diff --git a/README.md b/README.md index e69de29..95f4a4b 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,264 @@ +# Cryptocurrency Exchange Platform + +A comprehensive cryptocurrency exchange server built with Node.js, TypeScript, and Express. This platform supports trading of Bitcoin, Ethereum, and Tron cryptocurrencies with Iranian Rial (IRR) support. + +## Features + +- **Multi-Cryptocurrency Support**: Bitcoin (BTC), Ethereum (ETH), and Tron (TRX) +- **User Authentication**: Email and phone verification, session management +- **Wallet Management**: Secure wallet operations with support for multiple cryptocurrencies +- **Trading System**: Buy/sell orders, offer management, and order matching +- **Price Statistics**: Real-time and historical price data (hourly, daily, weekly, monthly, yearly) +- **Real-time Updates**: WebSocket integration via Socket.io for live updates +- **Admin Panel**: Administrative tools for managing the exchange +- **Support Tickets**: Integrated ticketing system for customer support +- **Automated Backups**: Daily database backups +- **Rate Limiting**: Brute force protection and rate limiting + +## Tech Stack + +- **Runtime**: Node.js +- **Language**: TypeScript +- **Framework**: Express.js +- **Database**: MongoDB (Mongoose) +- **Cache**: Redis +- **Message Queue**: AMQP (RabbitMQ) +- **Real-time**: Socket.io +- **Blockchain Libraries**: + - `bitcoin-core` for Bitcoin + - `web3` and `ethereumjs-tx` for Ethereum + - `tronweb` for Tron +- **Other**: Winston (logging), Nodemailer (emails), bcrypt (hashing) + +## Prerequisites + +- Node.js (v14 or higher) +- MongoDB +- Redis +- RabbitMQ (AMQP) +- TypeScript + +## Installation + +1. Clone the repository: +```bash +git clone +cd Exchange +``` + +2. Navigate to the server directory: +```bash +cd server +``` + +3. Install dependencies: +```bash +npm install +``` + +4. Create a `.env` file in the server directory with the following variables: + +```env +# Database +MONGO_DATABASE=mongodb://localhost:27017/exchange +MONGO_DATABASE_NAME_TICKETS=trudesk + +# Session +SESSION_SECRET=your-session-secret-key + +# Redis +REDIS_HOST=localhost +REDIS_PORT=6379 +# REDIS_PASS=your-redis-password + +# AMQP (RabbitMQ) +AMQP_URL=amqp://localhost + +# Email (Nodemailer) +NODEMAILER_HOST=smtp.gmail.com +NODEMAILER_PORT=587 +NODEMAILER_USER=your-email@gmail.com +NODEMAILER_PASS=your-email-password +SENDER_ADDRESS=your-email@gmail.com + +# API +API=http://localhost:3001 + +# External APIs +CURRENCY_API_KEY=your-nomics-api-key +SMS_API_ACCESS_KEY=your-sms-api-key +SMS_API_PHONE_PATTERN_CODE=your-sms-pattern-code +SMS_API_DEFINITE_SENDER_NUMBER=your-sms-sender-number + +# Ticket System +TICKET_START_CONVERSATION=your-ticket-api-url +TICKET_GET_MESSAGES_URL=your-ticket-api-url +TICKET_CREATE_TICKET_URL=your-ticket-api-url +TICKET_ADD_COMMENT_URL=your-ticket-api-url +TICKET_SEND_MESSAGE_URL=your-ticket-api-url +SUPPORT_ROLE_ID=your-support-role-id +USER_ROLE_ID=your-user-role-id +ACCESS_TOKEN=your-access-token + +# Crypto +CRYPTO_SECRET=your-crypto-secret +SALT_I=10 +OBJECTID_RIAL=your-rial-currency-object-id + +# Feature Flags +BUYFROMOFFERS=true + +# Chart +CHART_LIMIT=20 + +# Test +TEST_API_URL=http://localhost:3001 +NODE_ENV=development +``` + +5. Compile TypeScript (if needed): +```bash +npx tsc +``` + +## Running the Application + +### Development Mode + +```bash +npm start +``` + +The server will start on `http://localhost:3001` + +### Test Mode + +```bash +npm run test-env +``` + +### Running Tests + +```bash +npm test +``` + +## Project Structure + +``` +server/ +├── api/ # API utilities and integrations +│ ├── walletApi/ # Blockchain wallet APIs (Bitcoin, Ethereum, Tron) +│ ├── amqp.ts # AMQP message queue configuration +│ ├── logger.ts # Winston logger configuration +│ ├── redis.ts # Redis client configuration +│ └── socket.ts # Socket.io configuration +├── db/ # Database models and schemas +│ ├── user.ts # User model +│ ├── currencies.ts # Currency model +│ ├── activeOffers.ts # Active trading offers +│ ├── acceptedOffers.ts # Accepted offers +│ └── ... # Other models +├── middlewares/ # Express middlewares +│ ├── auth.ts # Authentication middleware +│ ├── validation.ts # Request validation +│ ├── errorHandler.ts # Error handling +│ └── preventBruteForce.ts # Rate limiting +├── routes/ # API routes +│ ├── auth.ts # Authentication routes +│ ├── user.ts # User routes +│ ├── wallet.ts # Wallet routes +│ ├── admin.ts # Admin routes +│ ├── service.ts # Service routes +│ └── tickets.ts # Support ticket routes +├── scripts/ # Utility scripts +│ ├── priceStats.ts # Price statistics +│ ├── currenciesadder.ts # Currency management +│ └── localPriceScript.ts # Local price tracking +└── test/ # Test files +``` + +## API Endpoints + +### Authentication (`/auth`) +- `GET /auth` - Check authentication status +- `POST /register` - User registration +- `POST /login` - User login +- `GET /logout` - User logout +- `POST /verify` - Verify email/phone + +### User (`/user`) +- `GET /getUserWallet` - Get user wallet balance +- `GET /getUserOffers` - Get user's trading offers +- `POST /createOffer` - Create a new trading offer +- `GET /getUserTransactions` - Get user transaction history + +### Wallet (`/wallet`) +- `GET /getEtheriumNonce` - Get Ethereum nonce +- `POST /transferToExchange` - Transfer cryptocurrency to exchange +- `POST /transferFromExchange` - Transfer cryptocurrency from exchange +- `POST /transferToExchangeById` - Transfer by transaction ID + +### Service (`/service`) +- `GET /getDeafultAcceptedOffers` - Get default accepted offers +- `GET /getPriceChart` - Get price chart data +- `GET /getCurrencies` - Get supported currencies + +### Admin (`/admin`) +- Admin-specific endpoints for managing the exchange + +### Tickets (`/tickets`) +- Support ticket management endpoints + +## Key Features + +### Automated Tasks +- Daily database backups (runs at 11:59 PM) +- Continuous price statistics updates +- Local price tracking (hourly, daily, weekly, monthly, yearly) +- Dollar to Rial price updates + +### Security +- Session-based authentication +- CSRF protection +- Rate limiting and brute force protection +- Password hashing with bcrypt +- Input validation + +### Real-time Features +- Socket.io for real-time updates +- Online user tracking +- Live price updates + +## Logging + +The application uses Winston for logging. Logs are written to: +- `combined.log` - All logs +- `error.log` - Error logs +- `exceptions.log` - Uncaught exceptions + +## Database + +The application uses MongoDB with the following main databases: +- `exchange` - Main application data +- `trudesk` - Support ticket system + +## Contributing + +1. Fork the repository +2. Create a feature branch +3. Make your changes +4. Write tests if applicable +5. Submit a pull request + +## License + +MIT + +## Notes + +- Make sure MongoDB, Redis, and RabbitMQ are running before starting the server +- Configure all environment variables in the `.env` file +- The application includes automated backup scripts that run daily +- Price statistics are updated continuously for real-time trading data + diff --git a/server/.DS_Store b/server/.DS_Store new file mode 100644 index 0000000..88bed5d Binary files /dev/null and b/server/.DS_Store differ diff --git a/server/.env b/server/.env new file mode 100755 index 0000000..b74e67f --- /dev/null +++ b/server/.env @@ -0,0 +1,57 @@ +#API address + +API=http://localhost:3001 + +#session +SESSION_SECRET=test + + +#mongo + +MONGO_SECRET=aaaaa +MONGO_DATABASE=mongodb://localhost:27017/exchange +SALT_I=10 +MONGO_DATABASE_NAME=exchange + + +#nodemailer +NODEMAILER_HOST=mail.polychain.ir +NODEMAILER_PORT=465 +NODEMAILER_USER=admin@polychain.ir +NODEMAILER_PASS=@polychainAdmin +SENDER_ADDRESS= + + +#AMQP +AMQP_URL=amqp://guest:guest@localhost + +#REDIS +REDIS_PORT=6379 +REDIS_HOST=localhost +CRYPTO_SECRET=abcde +BUYFROMOFFERS=true + + +MONGO_DATABASE_NAME_TICKETS=trudesk +TICKET_GET_MESSAGES_URL=http://localhost:8118/api/v1/users/create +TICKET_CREATE_TICKET_URL=http://localhost:8118/api/v1/tickets/create +TICKET_ADD_COMMENT_URL=http://localhost:8118/api/v1/tickets/addcomment +TICKET_TICKET_URL=http://localhost:8118/api/v1/tickets/ +ACCESS_TOKEN=556a5e513dc8a4e3c0b1643886a9cf3f636b1945 +SUPPORT_ROLE_ID=5fb21707795091261c6d2194 +USER_ROLE_ID=5fb21707795091261c6d2192 +# CURRENCY_API +CURRENCY_API_KEY=6ba4711649395555617a5bd91a416dac + + +process.env.ADMIN_ETHERIUM_ACCOUNT_ADDRESS=0x868453967f6806ef86de7cf5e57a32ab28b875b4 +process.env.ADMIN_ETHERIUM_ACCOUNT_PASSWORD=exchange +process.env.CLIENT_ETHERIUM_ACCOUNT_ADDRESS=0xC1BC3cB61722c959030aF512883F2E884baF5702 +process.env.CLIENT_ETHERIUM_ACCOUNT_PRIVATE_KEY=64061456066baa81c5097c895b5176fb3e1452eaf6f6776e2d7bf07ddb9accfe +# ObjectIDS +OBJECTID_RIAL=5f719d994923c95630df06be + + +CHART_LIMIT=20 + + diff --git a/server/api/amqp.js b/server/api/amqp.js new file mode 100755 index 0000000..001c57d --- /dev/null +++ b/server/api/amqp.js @@ -0,0 +1,100 @@ +'use strict'; +exports.__esModule = true; +exports.publishQueueConnection = void 0; +// This script fetches queued messages from RabbitMQ and delivers these to SMTP +var nodemailer = require("nodemailer"); +var amqp = require("amqp"); +var queueHost = process.env.AMQP_URL; +var queueName = 'outgoing'; +var smtpHost = { + host: process.env.NODEMAILER_HOST, + port: process.env.NODEMAILER_PORT, + // NB! Must be pooled connection, otherwise 'idle' is never fired and nothing gets sent + pool: true, + auth: { + user: process.env.NODEMAILER_USER, + pass: process.env.NODEMAILER_PASS + }, + tls: { + // testserver uses self signed certificate, so we need to lax a bit + rejectUnauthorized: false + }, + logger: false +}; +// array of prefetched messages waiting for delivery +var waiting = []; +// Create a SMTP transporter object +var transporter = nodemailer.createTransport(smtpHost, { + // default message fields + from: process.env.SENDER_ADDRESS +}); +// Create connection to RabbitMQ +var queueConnection = amqp.createConnection({ + url: queueHost +}); +queueConnection.on('error', function (e) { + console.log('Error from amqp: ', e); +}); +queueConnection.on('ready', function (err) { + console.log('AMPQ server is running on port 5672.'); + queueConnection.queue(queueName, { durable: true }, function (q) { + q.bind('#'); + q.subscribe({ + ack: true, + prefetchCount: 10 // prefetch 10 messages + }, function (message, headers, deliveryInfo, ack) { + // check if the message object is even valid + if (!message || !message.to) { + console.log('Invalid message, skipping'); + // reject, do not requeue + return ack.reject(); + } + // push to cache + waiting.push({ + message: message, + deliveryTag: deliveryInfo.deliveryTag.toString('hex'), + ack: ack + }); + // try to flush cached messages by sending these to SMTP + flushWaitingMessages(); + }); + }); +}); +// Whenever transporter gets into idling, try to send some mail +transporter.on('idle', flushWaitingMessages); +// Flushes cached messages to nodemailer for delivery +function flushWaitingMessages() { + // actual send function + var send = function (data) { + // sendMail does not immediatelly send, instead it tries to allocate a free connection to SMTP server + // and if fails, then pushes the message into internal queue. As we only prefetch 10 messages + // then the internal queue can never grow into something too large. At most there will be 5 messages + // idling in the queue (another 5 are being currently sent by the default number of 5 connections) + transporter.sendMail(data.message, function (err, info) { + if (err) { + console.log('Message failed (%s): %s', data.deliveryTag, err.message); + // reject and requeue on error (wait 1 sec. before requeueing) + // NB! If the failure is permanent then this approach results in an + // infinite loop since failing message is never removed from the queue + setTimeout(function () { + data.ack.reject(true); + }, 1000); + return; + } + console.log('Message delivered (%s): %s', data.deliveryTag, info.response); + data.ack.acknowledge(); + }); + }; + // send cached messages if transporter is idling + while (transporter.isIdle() && waiting.length) { + send(waiting.shift()); + } +} +exports.publishQueueConnection = function (mailOptions) { + console.log('publishQueueConnection'); + queueConnection.publish(queueName, mailOptions, function (err) { + if (err) { + console.log(err); + } + }); +}; diff --git a/server/api/amqp.ts b/server/api/amqp.ts new file mode 100755 index 0000000..80838d4 --- /dev/null +++ b/server/api/amqp.ts @@ -0,0 +1,112 @@ +'use strict' + +// This script fetches queued messages from RabbitMQ and delivers these to SMTP + +import * as nodemailer from 'nodemailer' +import * as amqp from 'amqp' + +const queueHost = process.env.AMQP_URL +const queueName = 'outgoing' + +const smtpHost = { + host: process.env.NODEMAILER_HOST, + port: process.env.NODEMAILER_PORT, + // NB! Must be pooled connection, otherwise 'idle' is never fired and nothing gets sent + pool: true, + auth: { + user: process.env.NODEMAILER_USER, + pass: process.env.NODEMAILER_PASS + }, + tls: { + // testserver uses self signed certificate, so we need to lax a bit + rejectUnauthorized: false + }, + logger: false +} + +// array of prefetched messages waiting for delivery +const waiting = [] +// Create a SMTP transporter object +const transporter = nodemailer.createTransport(smtpHost, { + // default message fields + from: process.env.SENDER_ADDRESS +}) + +// Create connection to RabbitMQ +const queueConnection = amqp.createConnection({ + url: queueHost +}) + +queueConnection.on('error', function (e) { + console.log('Error from amqp: ', e) +}) + +queueConnection.on('ready', function (err) { + console.log('AMPQ server is running on port 5672.') + queueConnection.queue(queueName, { durable: true }, function (q) { + q.bind('#') + q.subscribe({ + ack: true, // do not fetch next messages until previous are acked + prefetchCount: 10 // prefetch 10 messages + }, function (message, headers, deliveryInfo, ack) { + // check if the message object is even valid + if (!message || !message.to) { + console.log('Invalid message, skipping') + // reject, do not requeue + return ack.reject() + } + // push to cache + waiting.push({ + message: message, + deliveryTag: deliveryInfo.deliveryTag.toString('hex'), + ack: ack + }) + // try to flush cached messages by sending these to SMTP + flushWaitingMessages() + }) + }) +}) + +// Whenever transporter gets into idling, try to send some mail +transporter.on('idle', flushWaitingMessages) + +// Flushes cached messages to nodemailer for delivery +function flushWaitingMessages () { + // actual send function + var send = function (data) { + // sendMail does not immediatelly send, instead it tries to allocate a free connection to SMTP server + // and if fails, then pushes the message into internal queue. As we only prefetch 10 messages + // then the internal queue can never grow into something too large. At most there will be 5 messages + // idling in the queue (another 5 are being currently sent by the default number of 5 connections) + transporter.sendMail(data.message, function (err, info) { + if (err) { + console.log('Message failed (%s): %s', data.deliveryTag, err.message) + // reject and requeue on error (wait 1 sec. before requeueing) + // NB! If the failure is permanent then this approach results in an + // infinite loop since failing message is never removed from the queue + setTimeout(function () { + data.ack.reject(true) + }, 1000) + return + } + console.log('Message delivered (%s): %s', data.deliveryTag, info.response) + data.ack.acknowledge() + }) + } + + // send cached messages if transporter is idling + while (transporter.isIdle() && waiting.length) { + send(waiting.shift()) + } +} + +export const publishQueueConnection = (mailOptions) => { + console.log('publishQueueConnection') + queueConnection.publish(queueName, mailOptions, (err) => { + if (err) { + console.log(err) + } + }) +} + + diff --git a/server/api/logger.js b/server/api/logger.js new file mode 100755 index 0000000..62d9173 --- /dev/null +++ b/server/api/logger.js @@ -0,0 +1,46 @@ +"use strict"; +exports.__esModule = true; +exports.LoggerStream = exports.logger = void 0; +var winston = require("winston"); +var _a = winston.format, combine = _a.combine, timestamp = _a.timestamp, label = _a.label, prettyPrint = _a.prettyPrint, colorize = _a.colorize, json = _a.json, splat = _a.splat; +/// ///////////////////////////////////////////////////////////////////////////// +/// ///////////////////////Winston Logger/////////////////////////////////////// +/// //////////////////////////////////////////////////////////////////////////// +exports.logger = winston.createLogger({ + exitOnError: false, + format: combine(timestamp(), prettyPrint(), colorize(), splat()), + level: 'info', + // format: winston.format.json(), + // defaultMeta: { service: 'user-service' }, + transports: [ + // + // - Write to all logs with level `info` and below to `combined.log` + // - Write all logs error (and below) to `error.log`. + // + new winston.transports.File({ filename: 'error.log', level: 'error' }), + new winston.transports.File({ filename: 'combined.log' }) + ], + exceptionHandlers: [ + new winston.transports.File({ filename: 'exceptions.log' }) + ] +}); +// if (process.env.NODE_ENV === 'production' || process.env.NODE_ENV === 'development') { +exports.logger.add(new winston.transports.Console({ + format: winston.format.simple() +})); +// } +// logger.stream = { +// write: function (message: string, encoding: any) { +// logger.info(message) +// } +// } +var LoggerStream = /** @class */ (function () { + function LoggerStream() { + } + LoggerStream.prototype.write = function (message) { + exports.logger.info(message); + }; + return LoggerStream; +}()); +exports.LoggerStream = LoggerStream; +//module.exports = logger diff --git a/server/api/logger.ts b/server/api/logger.ts new file mode 100755 index 0000000..ba82fb1 --- /dev/null +++ b/server/api/logger.ts @@ -0,0 +1,48 @@ +import * as winston from 'winston' +const { combine, timestamp, label, prettyPrint, colorize, json, splat } = winston.format + +/// ///////////////////////////////////////////////////////////////////////////// +/// ///////////////////////Winston Logger/////////////////////////////////////// +/// //////////////////////////////////////////////////////////////////////////// + +export const logger = winston.createLogger({ + exitOnError: false, + format: combine( + timestamp(), + prettyPrint(), + colorize(), + splat() + ), + level: 'info', + // format: winston.format.json(), + // defaultMeta: { service: 'user-service' }, + transports: [ + // + // - Write to all logs with level `info` and below to `combined.log` + // - Write all logs error (and below) to `error.log`. + // + new winston.transports.File({ filename: 'error.log', level: 'error' }), + new winston.transports.File({ filename: 'combined.log' }) + ], + exceptionHandlers: [ + new winston.transports.File({ filename: 'exceptions.log' }) + ] +}) + +// if (process.env.NODE_ENV === 'production' || process.env.NODE_ENV === 'development') { +logger.add(new winston.transports.Console({ + format: winston.format.simple() +})) +// } +// logger.stream = { +// write: function (message: string, encoding: any) { +// logger.info(message) +// } +// } +export class LoggerStream { + write(message: string) { + logger.info(message); + } +} + +//module.exports = logger diff --git a/server/api/myError.js b/server/api/myError.js new file mode 100755 index 0000000..8ad1c4e --- /dev/null +++ b/server/api/myError.js @@ -0,0 +1,31 @@ +"use strict"; +var __extends = (this && this.__extends) || (function () { + var extendStatics = function (d, b) { + extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; + return extendStatics(d, b); + }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +exports.__esModule = true; +var myError = /** @class */ (function (_super) { + __extends(myError, _super); + function myError(messageEnglish, statusCode, clientCode, clientMessage, title) { + var _newTarget = this.constructor; + var _this = _super.call(this, messageEnglish) || this; + _this.messageEnglish = messageEnglish; + _this.statusCode = statusCode; + _this.clientCode = clientCode; + _this.clientMessage = clientMessage; + _this.title = title; + Object.setPrototypeOf(_this, _newTarget.prototype); // restore prototype chain + return _this; + } + return myError; +}(Error)); +exports["default"] = myError; diff --git a/server/api/myError.ts b/server/api/myError.ts new file mode 100755 index 0000000..8c5db93 --- /dev/null +++ b/server/api/myError.ts @@ -0,0 +1,25 @@ +import { cli } from "winston/lib/winston/config"; + +export default class myError extends Error { + messageEnglish: string; + statusCode: Number; + clientCode: Number; + clientMessage: string; + title: string; + + constructor( + messageEnglish ?: string, + statusCode?: Number, + clientCode?: Number, + clientMessage?: string, + title?: string + ) { + super(messageEnglish); + this.messageEnglish = messageEnglish; + this.statusCode = statusCode; + this.clientCode = clientCode; + this.clientMessage = clientMessage; + this.title = title; + Object.setPrototypeOf(this, new.target.prototype); // restore prototype chain + } +} diff --git a/server/api/query.js b/server/api/query.js new file mode 100755 index 0000000..1e1f956 --- /dev/null +++ b/server/api/query.js @@ -0,0 +1,326 @@ +"use strict"; +exports.__esModule = true; +exports.searchOnActiveOffers = exports.searchOnTxs = void 0; +var redis = require("../api/redis"); +var acceptedOffers_1 = require("../db/acceptedOffers"); +var ActiveOffers_1 = require("../db/ActiveOffers"); +exports.searchOnTxs = function (_a) { + var curId = _a.curId, txType = _a.txType, rial = _a.rial; + var itemsMap = new Map(); + var items = ['curId']; + var definedItems = []; + itemsMap.set('curId', curId); + items.map(function (element) { + if (itemsMap.get(element)) { + definedItems.push(element); + } + }); + var query = []; + var queryMap = new Map(); + queryMap.set('curId', [{ $or: [ + { $and: [{ curGivenId: curId }, { curTakenId: rial._id }] }, + { $and: [{ curTakenId: curId }, { curGivenId: rial._id }] } + ] }]); + var definedItemsMap = definedItems.map(function (element) { + query.push.apply(query, queryMap.get(element)); + }); + if (query.length === 0) { + query = [{ $or: [{ curTakenId: rial._id }, { curGivenId: rial._id }] }]; + } + console.log('query: ', query); + return Promise.all(definedItemsMap) + .then(function () { + return acceptedOffers_1.Accepted_Offers.find({ $and: query }) + .then(function (result) { + var modifiedResult = []; + if (itemsMap.get('curId')) { + return redis.hashGetAll(curId.toString()) + .then(function (curObj) { + result.map(function (e) { + if (e.curTakenId.toString() === rial._id.toString() && txType === 'sell') { + modifiedResult.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: e.curGivenVal, + Gicon: curObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curTakenVal, + Ticon: rial.icon, + txType: 'sell' + }); + } + else if (e.curGivenId.toString() === rial._id.toString() && txType === 'buy') { + modifiedResult.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: e.curTakenVal, + Gicon: curObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curGivenVal, + Ticon: rial.icon, + txType: 'buy' + }); + } + else if (txType === 'all') { + if (e.curTakenId.toString() === rial._id.toString()) { + modifiedResult.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: e.curGivenVal, + Gicon: curObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curTakenVal, + Ticon: rial.icon, + txType: 'sell' + }); + } + else if (e.curGivenId.toString() === rial._id.toString()) { + modifiedResult.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: e.curTakenVal, + Gicon: curObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curGivenVal, + Ticon: rial.icon, + txType: 'buy' + }); + } + } + }); + return modifiedResult; + })["catch"](function (err) { + throw err; + }); + } + else { + var resultMap = result.map(function (e) { + console.log('eeeeeeeee: ', e); + if (e.curTakenId.toString() === rial._id.toString() && txType === 'sell') { + return redis.hashGetAll(e.curGivenId.toString()) + .then(function (curGivenObj) { + modifiedResult.push({ + GcurrencyName: curGivenObj.currencyName, + GpersianName: curGivenObj.per_name, + GshortName: curGivenObj.ab_name, + Gvalue: e.curGivenVal, + Gicon: curGivenObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curTakenVal, + Ticon: rial.icon, + txType: 'sell' + }); + })["catch"](function (err) { + console.log(err); + }); + } + else if (e.curGivenId.toString() === rial._id.toString() && txType === 'buy') { + return redis.hashGetAll(e.curTakenId.toString()) + .then(function (curTakenObj) { + modifiedResult.push({ + GcurrencyName: curTakenObj.currencyName, + GpersianName: curTakenObj.per_name, + GshortName: curTakenObj.ab_name, + Gvalue: e.curTakenVal, + Gicon: curTakenObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curGivenVal, + Ticon: rial.icon, + txType: 'buy' + }); + })["catch"](function (err) { + console.log(err); + }); + } + else if (txType === 'all') { + if (e.curTakenId.toString() === rial._id.toString()) { + return redis.hashGetAll(e.curGivenId.toString()) + .then(function (curGivenObj) { + modifiedResult.push({ + GcurrencyName: curGivenObj.currencyName, + GpersianName: curGivenObj.per_name, + GshortName: curGivenObj.ab_name, + Gvalue: e.curGivenVal, + Gicon: curGivenObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curTakenVal, + Ticon: rial.icon, + txType: 'sell' + }); + })["catch"](function (err) { + console.log(err); + }); + } + else if (e.curGivenId.toString() === rial._id.toString()) { + return redis.hashGetAll(e.curTakenId.toString()) + .then(function (curTakenObj) { + modifiedResult.push({ + GcurrencyName: curTakenObj.currencyName, + GpersianName: curTakenObj.per_name, + GshortName: curTakenObj.ab_name, + Gvalue: e.curTakenVal, + Gicon: curTakenObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curGivenVal, + Ticon: rial.icon, + txType: 'buy' + }); + })["catch"](function (err) { + console.log(err); + }); + } + } + }); + return Promise.all(resultMap) + .then(function () { + return modifiedResult; + })["catch"](function (err) { + throw err; + }); + } + })["catch"](function (err) { + throw err; + }); + })["catch"](function (err) { + throw err; + }); +}; +exports.searchOnActiveOffers = function (_a) { + var offerId = _a.offerId, curGivenId = _a.curGivenId, curGivenVal = _a.curGivenVal, curTakenId = _a.curTakenId, curTakenVal = _a.curTakenVal, expDate = _a.expDate, created_at = _a.created_at; + var itemsMap = new Map(); + var items = ['offerId', 'curGivenId', 'curGivenVal', 'curTakenId', 'curTakenVal', 'expDate', 'created_at']; + var definedItems = []; + itemsMap.set('offerId', offerId); + itemsMap.set('curGivenId', curGivenId); + itemsMap.set('curGivenVal', curGivenVal); + itemsMap.set('curTakenId', curTakenId); + itemsMap.set('curTakenVal', curTakenVal); + itemsMap.set('expDate', expDate); + itemsMap.set('created_at', created_at); + items.map(function (element) { + if (itemsMap.get(element)) { + if (element === 'expDate') { + if (expDate.from || expDate.to) { + definedItems.push(element); + } + } + else if (element === 'created_at') { + if (created_at.from || created_at.to) { + definedItems.push(element); + } + } + else if (element === 'curGivenVal') { + if (curGivenVal.from || curGivenVal.to) { + definedItems.push(element); + } + } + else if (element === 'curTakenVal') { + if (curTakenVal.from || curTakenVal.to) { + definedItems.push(element); + } + } + else { + definedItems.push(element); + } + } + }); + var query = [{ expDate: { $gt: Date.now() } }]; + var queryMap = new Map(); + var queryExpDate; + var queryCreatedAt; + var queryCurGivenVal; + var queryCurTakenVal; + if (definedItems.includes('expDate')) { + if (expDate.from && expDate.to) { + queryExpDate = { expDate: { $gt: expDate.from, $lt: expDate.to } }; + } + else if (expDate.from && !expDate.to) { + queryExpDate = { expDate: { $gt: expDate.from } }; + } + else if (!expDate.from && expDate.to) { + queryExpDate = { expDate: { $lt: expDate.to } }; + } + } + if (definedItems.includes('created_at')) { + if (created_at.from && created_at.to) { + queryCreatedAt = { created_at: { $gt: created_at.from, $lt: created_at.to } }; + } + else if (created_at.from && !created_at.to) { + queryCreatedAt = { created_at: { $gt: created_at.from } }; + } + else if (!created_at.from && created_at.to) { + queryCreatedAt = { created_at: { $lt: created_at.to } }; + } + } + if (definedItems.includes('curGivenVal')) { + if (curGivenVal.from && curGivenVal.to) { + queryCurGivenVal = { curGivenVal: { $gte: curGivenVal.from, $lte: curGivenVal.to } }; + } + else if (curGivenVal.from && !curGivenVal.to) { + queryCurGivenVal = { curGivenVal: { $gte: curGivenVal.from } }; + } + else if (!curGivenVal.from && curGivenVal.to) { + queryCurGivenVal = { curGivenVal: { $lte: curGivenVal.to } }; + } + } + if (definedItems.includes('curTakenVal')) { + if (curTakenVal.from && curTakenVal.to) { + queryCurTakenVal = { curTakenVal: { $gte: curTakenVal.from, $lte: curTakenVal.to } }; + } + else if (curTakenVal.from && !curTakenVal.to) { + queryCurTakenVal = { curTakenVal: { $gte: curTakenVal.from } }; + } + else if (!curTakenVal.from && curTakenVal.to) { + queryCurTakenVal = { curTakenVal: { $lte: curTakenVal.to } }; + } + } + queryMap.set('offerId', { offerId: offerId }); + queryMap.set('curGivenId', { curGivenId: curGivenId }); + queryMap.set('curGivenVal', queryCurGivenVal); + queryMap.set('curTakenId', { curTakenId: curTakenId }); + queryMap.set('curTakenVal', queryCurTakenVal); + queryMap.set('expDate', queryExpDate); + queryMap.set('created_at', queryCreatedAt); + var definedItemsMap = definedItems.map(function (element) { + query.push(queryMap.get(element)); + }); + return Promise.all(definedItemsMap) + .then(function () { + return ActiveOffers_1.Active_Offers.find({ $and: query }) + .then(function (result) { + return result; + })["catch"](function (err) { + throw err; + }); + })["catch"](function (err) { + throw err; + }); +}; diff --git a/server/api/query.ts b/server/api/query.ts new file mode 100755 index 0000000..eaaf14e --- /dev/null +++ b/server/api/query.ts @@ -0,0 +1,334 @@ +import * as _ from 'lodash' + +import * as redis from '../api/redis' + + +import { Accepted_Offers } from '../db/acceptedOffers'; +import { Active_Offers } from '../db/ActiveOffers'; + +export const searchOnTxs = ({ curId, txType, rial }) => { + const itemsMap = new Map() + const items = ['curId'] + const definedItems = [] + itemsMap.set('curId', curId) + + + items.map((element) => { + if(itemsMap.get(element)) { + definedItems.push(element) + } + }) + + let query = [] + let queryMap = new Map() + + queryMap.set('curId', [ { $or: [ + { $and: [{ curGivenId: curId }, { curTakenId: rial._id } ] }, + { $and: [{ curTakenId: curId }, { curGivenId: rial._id } ] } + ] } ] ) + + const definedItemsMap = definedItems.map((element) => { + query.push.apply(query, queryMap.get(element)) + }) + + if(query.length === 0) { + query = [ { $or: [ { curTakenId: rial._id }, { curGivenId: rial._id } ] } ] + } + console.log('query: ', query) + return Promise.all(definedItemsMap) + .then(() => { + return Accepted_Offers.find({ $and: query }) + .then((result) => { + let modifiedResult = [] + if(itemsMap.get('curId')) { + return redis.hashGetAll(curId.toString()) + .then((curObj: any) => { + result.map((e) => { + if (e.curTakenId.toString() === rial._id.toString() && txType === 'sell') { + modifiedResult.push ({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: e.curGivenVal, + Gicon: curObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curTakenVal, + Ticon: rial.icon, + txType: 'sell' + }) + } else if (e.curGivenId.toString() === rial._id.toString() && txType === 'buy') { + modifiedResult.push ({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: e.curTakenVal, + Gicon: curObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curGivenVal, + Ticon: rial.icon, + txType: 'buy' + }) + } else if (txType === 'all') { + if (e.curTakenId.toString() === rial._id.toString()) { + modifiedResult.push ({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: e.curGivenVal, + Gicon: curObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curTakenVal, + Ticon: rial.icon, + txType: 'sell' + }) + } else if (e.curGivenId.toString() === rial._id.toString()) { + modifiedResult.push ({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: e.curTakenVal, + Gicon: curObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curGivenVal, + Ticon: rial.icon, + txType: 'buy' + }) + } + } + }) + return modifiedResult + }) + .catch((err) => { + throw err + }) + } else { + const resultMap = result.map((e) => { + console.log('eeeeeeeee: ', e) + if (e.curTakenId.toString() === rial._id.toString() && txType === 'sell') { + return redis.hashGetAll(e.curGivenId.toString()) + .then((curGivenObj: any) => { + modifiedResult.push ({ + GcurrencyName: curGivenObj.currencyName, + GpersianName: curGivenObj.per_name, + GshortName: curGivenObj.ab_name, + Gvalue: e.curGivenVal, + Gicon: curGivenObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curTakenVal, + Ticon: rial.icon, + txType: 'sell' + }) + }) + .catch((err) => { + console.log(err) + }) + } else if (e.curGivenId.toString() === rial._id.toString() && txType === 'buy') { + return redis.hashGetAll(e.curTakenId.toString()) + .then((curTakenObj: any) => { + modifiedResult.push({ + GcurrencyName: curTakenObj.currencyName, + GpersianName: curTakenObj.per_name, + GshortName: curTakenObj.ab_name, + Gvalue: e.curTakenVal, + Gicon: curTakenObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curGivenVal, + Ticon: rial.icon, + txType: 'buy' + }) + }) + .catch((err) => { + console.log(err) + }) + } else if (txType === 'all') { + if (e.curTakenId.toString() === rial._id.toString()) { + return redis.hashGetAll(e.curGivenId.toString()) + .then((curGivenObj: any) => { + modifiedResult.push ({ + GcurrencyName: curGivenObj.currencyName, + GpersianName: curGivenObj.per_name, + GshortName: curGivenObj.ab_name, + Gvalue: e.curGivenVal, + Gicon: curGivenObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curTakenVal, + Ticon: rial.icon, + txType: 'sell' + }) + }) + .catch((err) => { + console.log(err) + }) + } else if (e.curGivenId.toString() === rial._id.toString()) { + return redis.hashGetAll(e.curTakenId.toString()) + .then((curTakenObj: any) => { + modifiedResult.push ({ + GcurrencyName: curTakenObj.currencyName, + GpersianName: curTakenObj.per_name, + GshortName: curTakenObj.ab_name, + Gvalue: e.curTakenVal, + Gicon: curTakenObj.icon, + acceptedDate: e.created_at, + TcurrencyName: rial.currencyName, + TpersianName: rial.per_name, + TshortName: rial.ab_name, + Tvalue: e.curGivenVal, + Ticon: rial.icon, + txType: 'buy' + }) + }) + .catch((err) => { + console.log(err) + }) + } + } + }) + return Promise.all(resultMap) + .then(() => { + return modifiedResult + }) + .catch((err) => { + throw err + }) + } + }) + .catch((err) => { + throw err + }) + }) + .catch((err) => { + throw err + }) +} + + + +export const searchOnActiveOffers = ({ offerId, curGivenId, curGivenVal, curTakenId, curTakenVal, expDate, created_at }) => { + const itemsMap = new Map() + const items = ['offerId', 'curGivenId', 'curGivenVal', 'curTakenId', 'curTakenVal', 'expDate', 'created_at'] + const definedItems = [] + itemsMap.set('offerId', offerId) + itemsMap.set('curGivenId', curGivenId) + itemsMap.set('curGivenVal', curGivenVal) + itemsMap.set('curTakenId', curTakenId) + itemsMap.set('curTakenVal', curTakenVal) + itemsMap.set('expDate', expDate) + itemsMap.set('created_at', created_at) + + items.map((element) => { + if(itemsMap.get(element)) { + if (element === 'expDate') { + if(expDate.from || expDate.to) { + definedItems.push(element) + } + } else if (element === 'created_at') { + if(created_at.from || created_at.to) { + definedItems.push(element) + } + } else if (element === 'curGivenVal') { + if(curGivenVal.from || curGivenVal.to) { + definedItems.push(element) + } + } else if (element === 'curTakenVal') { + if(curTakenVal.from || curTakenVal.to) { + definedItems.push(element) + } + } else { + definedItems.push(element) + } + } + }) + + let query = [ { expDate: { $gt: Date.now() } } ] + let queryMap = new Map() + let queryExpDate + let queryCreatedAt + let queryCurGivenVal + let queryCurTakenVal + + if (definedItems.includes('expDate')) { + if (expDate.from && expDate.to) { + queryExpDate = { expDate: { $gt: expDate.from, $lt: expDate.to } } + } else if (expDate.from && !expDate.to) { + queryExpDate = { expDate: { $gt: expDate.from } } + } else if (!expDate.from && expDate.to) { + queryExpDate = { expDate: { $lt: expDate.to } } + } + } + if (definedItems.includes('created_at')) { + if (created_at.from && created_at.to) { + queryCreatedAt = { created_at: { $gt: created_at.from, $lt: created_at.to } } + } else if (created_at.from && !created_at.to) { + queryCreatedAt = { created_at: { $gt: created_at.from } } + } else if (!created_at.from && created_at.to) { + queryCreatedAt = { created_at: { $lt: created_at.to } } + } + } + if (definedItems.includes('curGivenVal')) { + if (curGivenVal.from && curGivenVal.to) { + queryCurGivenVal = { curGivenVal: { $gte: curGivenVal.from, $lte: curGivenVal.to } } + } else if (curGivenVal.from && !curGivenVal.to) { + queryCurGivenVal = { curGivenVal: { $gte: curGivenVal.from } } + } else if (!curGivenVal.from && curGivenVal.to) { + queryCurGivenVal = { curGivenVal: { $lte: curGivenVal.to } } + } + } + if (definedItems.includes('curTakenVal')) { + if (curTakenVal.from && curTakenVal.to) { + queryCurTakenVal = { curTakenVal: { $gte: curTakenVal.from, $lte: curTakenVal.to } } + } else if (curTakenVal.from && !curTakenVal.to) { + queryCurTakenVal = { curTakenVal: { $gte: curTakenVal.from } } + } else if (!curTakenVal.from && curTakenVal.to) { + queryCurTakenVal = { curTakenVal: { $lte: curTakenVal.to } } + } + } + + queryMap.set('offerId', { offerId: offerId }) + queryMap.set('curGivenId', { curGivenId: curGivenId }) + queryMap.set('curGivenVal', queryCurGivenVal) + queryMap.set('curTakenId', { curTakenId: curTakenId }) + queryMap.set('curTakenVal', queryCurTakenVal) + queryMap.set('expDate', queryExpDate) + queryMap.set('created_at', queryCreatedAt) + const definedItemsMap = definedItems.map((element) => { + query.push(queryMap.get(element)) + }) + + return Promise.all(definedItemsMap) + .then(() => { + return Active_Offers.find({ $and: query }) + .then((result) => { + return result + }) + .catch((err) => { + throw err + }) + }) + .catch((err) => { + throw err + }) +} + + + diff --git a/server/api/redis.js b/server/api/redis.js new file mode 100755 index 0000000..75db333 --- /dev/null +++ b/server/api/redis.js @@ -0,0 +1,116 @@ +"use strict"; +exports.__esModule = true; +exports.getCurrentPrice = exports.hashSetMembers = exports.hashHMset = exports.hashGetAll = exports.hashset = exports.hashget = exports.globalRedisClient = void 0; +var redis = require("redis"); +var myError_1 = require("./myError"); +exports.globalRedisClient = redis.createClient({ + port: process.env.REDIS_PORT, + host: process.env.REDIS_HOST, + enable_offline_queue: false +}); +// globalRedisClient.auth(process.env.REDIS_PASS, (err) => { +// if (err) console.log(err); +// }) +exports.globalRedisClient.on('connect', function (err) { + if (err) { + console.log(err); + } + else { + console.log('Redis-server is connected'); + } +}); +exports.globalRedisClient.on('error', function (err) { + console.log('Error ' + err); +}); +exports.hashget = function (tag) { + return new Promise(function (resolve, reject) { + exports.globalRedisClient.get(tag, function (err, reply) { + if (err) { + reject(err); + } + else { + resolve(reply); + } + }); + }); +}; +exports.hashset = function (tag, val) { + return new Promise(function (resolve, reject) { + exports.globalRedisClient.set(tag, val, function (err, reply) { + if (err) { + reject(err); + } + else { + resolve(reply); + } + }); + }); +}; +exports.hashGetAll = function (tag) { + return new Promise(function (resolve, reject) { + exports.globalRedisClient.hgetall(tag, function (err, reply) { + if (err) { + reject(err); + } + else { + resolve(reply); + } + }); + }); +}; +exports.hashHMset = function (tag, val) { + return new Promise(function (resolve, reject) { + exports.globalRedisClient.hmset(tag, val, function (err, reply) { + if (err) { + reject(err); + } + else { + resolve(reply); + } + }); + }); +}; +exports.hashSetMembers = function (tag) { + return new Promise(function (resolve, reject) { + exports.globalRedisClient.smembers(tag, function (err, reply) { + if (err) { + reject(err); + } + else { + resolve(reply); + } + }); + }); +}; +function getCurrentPrice(currency) { + //API for getting current currency price + return exports.hashGetAll(currency.toString()) + .then(function (currencyInfo) { + return exports.hashGetAll(currencyInfo.ab_name.toString() + "-g") + .then(function (currencyInstantPrice) { + if (currencyInstantPrice) { + return exports.hashget("dollarPrice") + .then(function (rialPrice) { + if (rialPrice) { + return Number(currencyInstantPrice.current) * Number(rialPrice); + } + else { + var error = new myError_1["default"]('It is not possible to get price currently!', 400, 11, 'امکان قیمت گیری در حال حاضر وجود ندارد!', 'خطا رخ داد'); + throw error; + } + })["catch"](function (err) { + throw err; + }); + } + else { + var error = new myError_1["default"]('It is not possible to get price currently!', 400, 11, 'امکان قیمت گیری در حال حاضر وجود ندارد!', 'خطا رخ داد'); + throw error; + } + })["catch"](function (err) { + throw err; + }); + })["catch"](function (err) { + throw err; + }); +} +exports.getCurrentPrice = getCurrentPrice; diff --git a/server/api/redis.ts b/server/api/redis.ts new file mode 100755 index 0000000..74d30b3 --- /dev/null +++ b/server/api/redis.ts @@ -0,0 +1,127 @@ +import * as redis from 'redis' +import myError from './myError' +export const globalRedisClient = redis.createClient({ + port: process.env.REDIS_PORT, + host: process.env.REDIS_HOST, + enable_offline_queue: false +}) +// globalRedisClient.auth(process.env.REDIS_PASS, (err) => { +// if (err) console.log(err); +// }) +globalRedisClient.on('connect', function (err) { + if(err) { + console.log(err) + } else { + console.log('Redis-server is connected') + } +}) + +globalRedisClient.on('error', function (err) { + console.log('Error ' + err) +}) + +export const hashget = (tag) => { // It is corresponded to hashset + return new Promise((resolve, reject) => { + globalRedisClient.get(tag, (err, reply) => { + if (err) { + reject(err) + } else { + resolve(reply) + } + }) + }) +} + +export const hashset = (tag, val) => { // value could be only a string + return new Promise((resolve, reject) => { + globalRedisClient.set(tag, val, (err, reply) => { + if (err) { + reject(err) + } else { + resolve(reply) + } + }) + }) +} + +export const hashGetAll = (tag) => { // It is corresponded to hashHMset + return new Promise((resolve, reject) => { + globalRedisClient.hgetall(tag, (err, reply) => { + if (err) { + reject(err) + } else { + resolve(reply) + } + }) + }) +} + +export const hashHMset = (tag, val) => { // value could be object! + return new Promise((resolve, reject) => { + globalRedisClient.hmset(tag, val, (err, reply) => { + if (err) { + reject(err) + } else { + resolve(reply) + } + }) + }) +} + +export const hashSetMembers = (tag) => { + return new Promise((resolve, reject) => { + globalRedisClient.smembers(tag, (err, reply) => { + if (err) { + reject(err) + } else { + resolve(reply) + } + }) + }) +} + +export function getCurrentPrice(currency){ + //API for getting current currency price + return hashGetAll(currency.toString()) + .then((currencyInfo: any) => { + return hashGetAll(currencyInfo.ab_name.toString() + "-g") + .then((currencyInstantPrice: any) => { + if(currencyInstantPrice) { + return hashget("dollarPrice") + .then((rialPrice) => { + if(rialPrice) { + return Number(currencyInstantPrice.current) * Number(rialPrice) + } else { + const error = new myError( + 'It is not possible to get price currently!', + 400, + 11, + 'امکان قیمت گیری در حال حاضر وجود ندارد!', + 'خطا رخ داد' + ) + throw error + } + }) + .catch((err) => { + throw err + }) + } else { + const error = new myError( + 'It is not possible to get price currently!', + 400, + 11, + 'امکان قیمت گیری در حال حاضر وجود ندارد!', + 'خطا رخ داد' + ) + throw error + } + }) + .catch((err) => { + throw err + }) + }) + .catch((err) => { + throw err + }) +} + diff --git a/server/api/socket.js b/server/api/socket.js new file mode 100755 index 0000000..ef3e075 --- /dev/null +++ b/server/api/socket.js @@ -0,0 +1,52 @@ +"use strict"; +exports.__esModule = true; +exports.getonlineNotLoginUsers = exports.getonlineLoginUsers = exports.startIo = void 0; +// import * as scocketIo from 'socket.io' +var scocketIo = require('socket.io'); +var redis = require("redis"); +var client = redis.createClient(); +var logger_1 = require("./logger"); +var onlineLoginUsers = null; +var onlineNotLoginUsers = null; +var socketConnection = function socketConnection(socket) { + logger_1.logger.info("Client connected [id=" + socket.id + "]"); +}; +var socketDisconnection = function socketDisconnection(socket) { + logger_1.logger.info("Client gone [id=" + socket.id + "]"); +}; +exports.startIo = function (server) { + var io = scocketIo(server, { + serveClient: false, + cors: { + origin: '*' + } + }); + io.on('connection', socketConnection); + io.on('disconnect', socketDisconnection); + onlineLoginUsers = io.of('/onlineLoginUsers'); + onlineNotLoginUsers = io.of('/onlineNotLoginUsers'); + onlineLoginUsers.on('connection', function (socket) { + logger_1.logger.info("Client connected [id=" + socket.id + "]"); + console.log('socket.handshake', socket.handshake.session); + if (socket.handshake.session.userId) { + client.sadd(socket.handshake.session.userId, socket.id, function (err, reply) { + if (err) + logger_1.logger.warn(err); + }); + logger_1.logger.info("A logged in client connected in :" + socket.id); + socket.on('disconnect', function () { + logger_1.logger.info("Client gone [id=" + socket.id + "]"); + client.srem(socket.handshake.session.userId, socket.id, function (err, reply) { + logger_1.logger.info("socket with id " + socket.id + " is closed!"); + }); + }); + } + }); + return io; +}; +exports.getonlineLoginUsers = function () { + return onlineLoginUsers; +}; +exports.getonlineNotLoginUsers = function () { + return onlineNotLoginUsers; +}; diff --git a/server/api/socket.ts b/server/api/socket.ts new file mode 100755 index 0000000..3e307f5 --- /dev/null +++ b/server/api/socket.ts @@ -0,0 +1,55 @@ +// import * as scocketIo from 'socket.io' +const scocketIo = require('socket.io') +import * as redis from 'redis' +var client = redis.createClient() +import { logger } from './logger' + +let onlineLoginUsers = null +let onlineNotLoginUsers = null + +var socketConnection = function socketConnection (socket) { + logger.info(`Client connected [id=${socket.id}]`) +} + +var socketDisconnection = function socketDisconnection (socket) { + logger.info(`Client gone [id=${socket.id}]`) +} +export const startIo = (server) => { + const io = scocketIo(server, { + serveClient: false, + cors: { + origin: '*', + } + }) + io.on('connection', socketConnection) + io.on('disconnect', socketDisconnection) + onlineLoginUsers = io.of('/onlineLoginUsers') + onlineNotLoginUsers = io.of('/onlineNotLoginUsers') + onlineLoginUsers.on('connection', function (socket) { + logger.info(`Client connected [id=${socket.id}]`) + console.log('socket.handshake', socket.handshake.session) + if (socket.handshake.session.userId) { + client.sadd(socket.handshake.session.userId, socket.id, (err, reply) => { + if (err) logger.warn(err) + }) + logger.info(`A logged in client connected in :${socket.id}`) + socket.on('disconnect', () => { + logger.info(`Client gone [id=${socket.id}]`) + client.srem(socket.handshake.session.userId, socket.id, (err, reply) => { + logger.info(`socket with id ${socket.id} is closed!`) + }) + }) + } + }) + return io +} + +export const getonlineLoginUsers = () => { + return onlineLoginUsers +} + +export const getonlineNotLoginUsers = () => { + return onlineNotLoginUsers +} + + diff --git a/server/api/suggestOffers.js b/server/api/suggestOffers.js new file mode 100755 index 0000000..d7e5a18 --- /dev/null +++ b/server/api/suggestOffers.js @@ -0,0 +1,190 @@ +"use strict"; +exports.__esModule = true; +exports.prepForKS = exports.knapsack = exports.suggestOffers = exports.normalizing = void 0; +var moment = require('moment-timezone'); +var math = require('mathjs'); +var ActiveOffers_1 = require("../db/ActiveOffers"); +function normalizing(arr, asc) { + var mArr = math.matrix(arr); + var min = math.min(mArr).valueOf(); + var max = math.max(mArr).valueOf(); + var nArr = mArr; + var i; + if (max == min) { + for (i = 0; i < math.size(mArr).get([0]); i++) { + nArr = math.subset(nArr, math.index(i), max); + } + return nArr.valueOf(); + } + if (asc) { + for (i = 0; i < math.size(mArr).get([0]); i++) { + nArr = math.subset(nArr, math.index(i), (((mArr.get([i]) - min) / (max - min)) + 1)); + } + return nArr.valueOf(); + } + else { + for (i = 0; i < math.size(mArr).get([0]); i++) { + nArr = math.subset(nArr, math.index(i), 2 - (((mArr.get([i]) - min) / (max - min)))); + } + return nArr.valueOf(); + } +} +exports.normalizing = normalizing; +function suggestOffers(_a) { + var userId = _a.userId, price = _a.price, capacity = _a.capacity, offerType = _a.offerType, currencyId = _a.currencyId, rialId = _a.rialId; + if (offerType == 'buy') { + // get all offers except the user's offers + var maxPrice = price + 0.05 * price; + return ActiveOffers_1.Active_Offers.find({ $and: [ + { userId: { $ne: userId } }, + { expDate: { $gt: Date.now() } }, + { curTakenId: currencyId }, + { curGivenId: rialId }, + { curGivenVal: { $lt: maxPrice } } + ] + }) + .then(function (offers) { + if (offers && Array.isArray(offers) && offers.length > 0) { + var offerIds_1 = []; + var offerFeatures = []; + var prices_1 = []; + var values_1 = []; + var expDate_1 = []; + offers.forEach(function (off) { + offerIds_1.push(off._id.toString()); + prices_1.push(off.curGivenVal); + values_1.push(off.curTakenVal); + expDate_1.push(Math.round((moment(off.expDate) - moment()) / 60000)); + }); + prices_1 = normalizing(prices_1, false); + expDate_1 = normalizing(expDate_1, false); + var weights = values_1; + offerFeatures = math.concat(math.concat(math.reshape(math.matrix(prices_1), [prices_1.length, 1]), math.reshape(math.matrix(values_1), [values_1.length, 1]), 1), math.reshape(math.matrix(expDate_1), [expDate_1.length, 1]), 1).valueOf(); + var coefs = [[0.3], [0.2], [0.5]]; + var data = prepForKS(offerIds_1, offerFeatures, weights, coefs); + var sugOffers = knapsack(data, capacity); + return sugOffers; + } + else { + console.log("There is no offer to suggest"); + } + })["catch"](function (err) { + console.log("Error in middlewares/suggestOffers.ts : ", err); + }); + } + else { + if (offerType == 'sell') { + // get all offers except the user's offers + var maxPrice = price + 0.05 * price; + ActiveOffers_1.Active_Offers.find({ $and: [ + { userId: { $ne: userId } }, + { expDate: { $gt: Date.now() } }, + { curGivenId: currencyId }, + { curTakenId: rialId }, + { curTakenVal: { $lt: maxPrice } } + ] + }) + .then(function (offers) { + if (offers && Array.isArray(offers) && offers.length > 0) { + var offerIds_2 = []; + var offerFeatures = []; + var prices_2 = []; + var values_2 = []; + var expDate_2 = []; + offers.forEach(function (off) { + offerIds_2.push(off._id.toString()); + prices_2.push(off.curTakenVal); + values_2.push(off.curGivenVal); + expDate_2.push(Math.round((moment(off.expDate) - moment()) / 60000)); + }); + prices_2 = normalizing(prices_2, true); + expDate_2 = normalizing(expDate_2, false); + var weights = values_2; + offerFeatures = math.concat(math.concat(math.reshape(math.matrix(prices_2), [prices_2.length, 1]), math.reshape(math.matrix(values_2), [values_2.length, 1]), 1), math.reshape(math.matrix(expDate_2), [expDate_2.length, 1]), 1).valueOf(); + var coefs = [[0.3], [0.2], [0.5]]; + var data = prepForKS(offerIds_2, offerFeatures, weights, coefs); + var sugOffers = knapsack(data, capacity); + return sugOffers; + } + else { + console.log("There is no offer to suggest"); + } + })["catch"](function (err) { + console.log("Error in middlewares/suggestOffers.ts : ", err); + }); + } + else { + console.log("offerType must be buy or sell"); + } + } +} +exports.suggestOffers = suggestOffers; +function knapsack(items, capacity) { + // This implementation uses dynamic programming. + // Variable 'memo' is a grid(2-dimentional array) to store optimal solution for sub-problems, + // which will be later used as the code execution goes on. + // This is called memoization in programming. + // The cell will store best solution objects for different capacities and selectable items. + var memo = []; + // Filling the sub-problem solutions grid. + for (var i = 0; i < items.length; i++) { + // Variable 'cap' is the capacity for sub-problems. In this example, 'cap' ranges from 1 to 6. + var row = []; + for (var cap = 1; cap <= capacity; cap++) { + row.push(getSolution(i, cap)); + } + memo.push(row); + } + // The right-bottom-corner cell of the grid contains the final solution for the whole problem. + return (getLast()); + function getLast() { + var lastRow = memo[memo.length - 1]; + return lastRow[lastRow.length - 1]; + } + function getSolution(row, cap) { + var NO_SOLUTION = { maxValue: 0, subset: [] }; + // the column number starts from zero. + var col = cap - 1; + var lastItem = items[row]; + // The remaining capacity for the sub-problem to solve. + var remaining = cap - lastItem.w; + // Refer to the last solution for this capacity, + // which is in the cell of the previous row with the same column + var lastSolution = row > 0 ? memo[row - 1][col] || NO_SOLUTION : NO_SOLUTION; + // Refer to the last solution for the remaining capacity, + // which is in the cell of the previous row with the corresponding column + var lastSubSolution = row > 0 ? memo[row - 1][remaining - 1] || NO_SOLUTION : NO_SOLUTION; + // If any one of the items weights greater than the 'cap', return the last solution + if (remaining < 0) { + return lastSolution; + } + // Compare the current best solution for the sub-problem with a specific capacity + // to a new solution trial with the lastItem(new item) added + var lastValue = lastSolution.maxValue; + var lastSubValue = lastSubSolution.maxValue; + var newValue = lastSubValue + lastItem.v; + if (newValue >= lastValue) { + // copy the subset of the last sub-problem solution + var _lastSubSet = lastSubSolution.subset.slice(); + _lastSubSet.push(lastItem); + return { maxValue: newValue, subset: _lastSubSet }; + } + else { + return lastSolution; + } + } +} +exports.knapsack = knapsack; +function prepForKS(offerIds, offerFeatures, weights, coefs) { + var values = math.multiply(math.matrix(offerFeatures), math.matrix(coefs)); + var data = math.concat(math.concat(math.reshape(math.matrix(offerIds), [offerIds.length, 1]), values, 1), math.reshape(math.matrix(weights), [weights.length, 1]), 1).valueOf(); + var dataObj = Object.values(data.reduce(function (c, _a) { + var n = _a[0], v = _a[1], w = _a[2]; + c[n] = c[n] || { id: n, v: v, w: w }; + c[n].v = v; + c[n].w = w; + return c; + }, {})); + return dataObj; +} +exports.prepForKS = prepForKS; diff --git a/server/api/suggestOffers.ts b/server/api/suggestOffers.ts new file mode 100755 index 0000000..e730103 --- /dev/null +++ b/server/api/suggestOffers.ts @@ -0,0 +1,201 @@ +const moment = require( 'moment-timezone') +const math = require('mathjs'); + +import { Active_Offers } from '../db/ActiveOffers'; + +export function normalizing(arr, asc) { + + let mArr = math.matrix(arr) + const min = math.min(mArr).valueOf() + const max = math.max(mArr).valueOf() + let nArr = mArr + let i + if(max == min){ + for(i=0; i < math.size(mArr).get([0]);i++) { + nArr = math.subset(nArr, math.index(i), max ) + } + return nArr.valueOf() + } + if(asc) { + for(i=0; i < math.size(mArr).get([0]);i++) { + nArr = math.subset(nArr, math.index(i), (((mArr.get([i]) - min)/(max - min)) + 1)) + } + return nArr.valueOf() + } else { + for(i=0; i < math.size(mArr).get([0]); i++) { + nArr = math.subset(nArr, math.index(i), 2 - (((mArr.get([i]) - min)/(max - min)))) + } + return nArr.valueOf() + } +} + +export function suggestOffers({ userId, price, capacity, offerType, currencyId, rialId }) { + if(offerType == 'buy') { + // get all offers except the user's offers + let maxPrice = price + 0.05*price + return Active_Offers.find({ $and: + [ + { userId :{ $ne: userId} }, + { expDate: { $gt: Date.now() } }, + { curTakenId: currencyId }, + { curGivenId: rialId }, + { curGivenVal: { $lt: maxPrice }} + ] + }) + .then((offers) => { + if(offers && Array.isArray(offers) && offers.length > 0) { + let offerIds = [] + let offerFeatures = [] + let prices = [] + let values = [] + let expDate = [] + offers.forEach(off => { + offerIds.push(off._id.toString()) + prices.push(off.curGivenVal) + values.push(off.curTakenVal) + expDate.push(Math.round((moment(off.expDate) - moment())/60000)) + }) + prices = normalizing(prices, false) + expDate = normalizing(expDate, false) + let weights = values + + offerFeatures = math.concat(math.concat(math.reshape(math.matrix(prices), [prices.length, 1]), + math.reshape(math.matrix(values), [values.length, 1]), 1), + math.reshape(math.matrix(expDate), [expDate.length, 1]), 1).valueOf() + let coefs = [[0.3], [0.2], [0.5]] + let data = prepForKS(offerIds, offerFeatures, weights, coefs) + let sugOffers = knapsack(data, capacity) + return sugOffers + } else { + console.log("There is no offer to suggest") + } + }) + .catch((err) => { + console.log("Error in middlewares/suggestOffers.ts : ", err) + }) + } else { + if(offerType == 'sell') { + // get all offers except the user's offers + let maxPrice = price + 0.05*price + Active_Offers.find({ $and: + [ + { userId :{ $ne: userId} }, + { expDate: { $gt: Date.now() } }, + { curGivenId: currencyId }, + { curTakenId: rialId }, + { curTakenVal: { $lt: maxPrice }} + ] + }) + .then((offers) => { + if(offers && Array.isArray(offers) && offers.length > 0) { + let offerIds = [] + let offerFeatures = [] + let prices = [] + let values = [] + let expDate = [] + offers.forEach(off => { + offerIds.push(off._id.toString()) + prices.push(off.curTakenVal) + values.push(off.curGivenVal) + expDate.push(Math.round((moment(off.expDate) - moment())/60000)) + }) + prices = normalizing(prices, true) + expDate = normalizing(expDate, false) + let weights = values + + offerFeatures = math.concat(math.concat(math.reshape(math.matrix(prices), [prices.length, 1]), + math.reshape(math.matrix(values), [values.length, 1]), 1), + math.reshape(math.matrix(expDate), [expDate.length, 1]), 1).valueOf() + let coefs = [[0.3], [0.2], [0.5]] + let data = prepForKS(offerIds, offerFeatures, weights, coefs) + let sugOffers = knapsack(data, capacity) + return sugOffers + } else { + console.log("There is no offer to suggest") + } + }) + .catch((err) => { + console.log("Error in middlewares/suggestOffers.ts : ", err) + }) + } else { + console.log("offerType must be buy or sell") + } + } +} + +export function knapsack(items, capacity) { + // This implementation uses dynamic programming. + // Variable 'memo' is a grid(2-dimentional array) to store optimal solution for sub-problems, + // which will be later used as the code execution goes on. + // This is called memoization in programming. + // The cell will store best solution objects for different capacities and selectable items. + var memo = []; + + // Filling the sub-problem solutions grid. + for (var i = 0; i < items.length; i++) { + // Variable 'cap' is the capacity for sub-problems. In this example, 'cap' ranges from 1 to 6. + var row = []; + for (var cap = 1; cap <= capacity; cap++) { + row.push(getSolution(i,cap)); + } + memo.push(row); + } + + // The right-bottom-corner cell of the grid contains the final solution for the whole problem. + return(getLast()); + + function getLast(){ + var lastRow = memo[memo.length - 1]; + return lastRow[lastRow.length - 1]; + } + + function getSolution(row,cap){ + const NO_SOLUTION = {maxValue:0, subset:[]}; + // the column number starts from zero. + var col = cap - 1; + var lastItem = items[row]; + // The remaining capacity for the sub-problem to solve. + var remaining = cap - lastItem.w; + + // Refer to the last solution for this capacity, + // which is in the cell of the previous row with the same column + var lastSolution = row > 0 ? memo[row - 1][col] || NO_SOLUTION : NO_SOLUTION; + // Refer to the last solution for the remaining capacity, + // which is in the cell of the previous row with the corresponding column + var lastSubSolution = row > 0 ? memo[row - 1][remaining - 1] || NO_SOLUTION : NO_SOLUTION; + + // If any one of the items weights greater than the 'cap', return the last solution + if(remaining < 0){ + return lastSolution; + } + + // Compare the current best solution for the sub-problem with a specific capacity + // to a new solution trial with the lastItem(new item) added + var lastValue = lastSolution.maxValue; + var lastSubValue = lastSubSolution.maxValue; + + var newValue = lastSubValue + lastItem.v; + if(newValue >= lastValue) { + // copy the subset of the last sub-problem solution + var _lastSubSet = lastSubSolution.subset.slice(); + _lastSubSet.push(lastItem); + return {maxValue: newValue, subset:_lastSubSet}; + } else { + return lastSolution; + } + } + } + +export function prepForKS(offerIds, offerFeatures, weights, coefs) { + + let values = math.multiply(math.matrix(offerFeatures), math.matrix(coefs)) + let data = math.concat(math.concat(math.reshape(math.matrix(offerIds), [offerIds.length, 1]), values, 1), + math.reshape(math.matrix(weights), [weights.length, 1]), 1).valueOf() + let dataObj = Object.values(data.reduce((c, [n, v, w]) => { + c[n] = c[n] || {id: n, v, w}; + c[n].v = v + c[n].w = w + return c; + }, {})); + return dataObj +} diff --git a/server/api/walletApi/bitcoin.js b/server/api/walletApi/bitcoin.js new file mode 100755 index 0000000..d9b7562 --- /dev/null +++ b/server/api/walletApi/bitcoin.js @@ -0,0 +1,153 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.bitcoinTransferToExchangeById = exports.bitcoinTransferFromExchange = void 0; +var Client = require('bitcoin-core'); +var myError_1 = require("../myError"); +var _ = require("lodash"); +exports.bitcoinTransferFromExchange = function (value, receiver) { return __awaiter(void 0, void 0, void 0, function () { + var client, query_options; + return __generator(this, function (_a) { + client = new Client({ + network: 'testnet', + username: 'polychain', + password: '3QtnxrB7P5y4EpBdad1MkCeB2RHmArvcarw7udgXsAce', + host: "127.0.0.1", + port: 8332 + }); + query_options = { + "minimumAmount": value, + //"maximumAmount":value, + "maximumCount": 1 + }; + return [2 /*return*/, client.listUnspent(0, 9999999, [], true, query_options) + .then(function (unspentTx) { + if (unspentTx[0]) { + var txid = unspentTx[0].txid; + var vout = unspentTx[0].vout; + var txValue = unspentTx[0].amount; + var txFee = value * (0.001); + var StxFee = txFee.toFixed(8); + var totalValue = Number(value) + Number(StxFee); + var change = txValue - totalValue; + var Schange = change.toFixed(8); + var nodeAddress = unspentTx[0].address; + var input = [{ + "txid": txid, + "vout": vout + }]; + var output = []; + var obj = {}; + var obj_2 = {}; + obj[receiver] = value; + obj_2[nodeAddress] = Schange; + output.push(obj, obj_2); + return client.createRawTransaction(input, output) + .then(function (txHex) { + return client.signRawTransactionWithWallet(txHex) + .then(function (sinedHex) { + return client.sendRawTransaction(sinedHex.hex) + .then(function (txHashOrId) { + return txHashOrId; + })["catch"](function (err) { + console.log("error in sendsigned", err); + throw err; + }); + })["catch"](function (err) { + console.log("error in sign ", err); + throw err; + }); + })["catch"](function (err) { + console.log("error in create raw tx", err); + throw err; + }); + } + else { + var error = new myError_1["default"]('you do not have unspent trancaction', 400, 5, 'تراکنش خرج نشده پیدا نشد', 'خطا رخ داد'); + throw error; + } + })["catch"](function (err) { + console.log("error in lisutxo", err); + throw err; + })]; + }); +}); }; +exports.bitcoinTransferToExchangeById = function (txId) { return __awaiter(void 0, void 0, void 0, function () { + var btcAddress, client; + return __generator(this, function (_a) { + btcAddress = ["tb1qfpf6lss60wmle9wanetjxjjt6lc6z65mapk50s"]; + client = new Client({ + network: 'testnet', + username: 'polychain', + password: '3QtnxrB7P5y4EpBdad1MkCeB2RHmArvcarw7udgXsAce', + host: "127.0.0.1", + port: 8332 + }); + return [2 /*return*/, client.getTransaction(txId) + .then(function (txInfo) { + if (txInfo) { + var tx = _.find(txInfo.details, function (i) { return i.category.toString() === "receive" && btcAddress.includes(i.address.toString()); }); + if (tx) { + var status_1; + if (txInfo.confirmations >= 6) { + status_1 = "Confirmed"; + } + else { + status_1 = "pending"; + } + var info = { + "txAddress": tx.address, + "txAmount": tx.amount, + "status": status_1 + }; + return info; + } + else { + var error = new myError_1["default"]('tx not found', 400, 5, 'تراکنش یافت نشد', 'خطا رخ داد'); + throw error; + } + } + else { + var error = new myError_1["default"]('transaction not found', 400, 5, 'تراکنش مربوطه پیدا نشد.', 'خطا رخ داد'); + throw error; + } + })["catch"](function (err) { + throw err; + })]; + }); +}); }; diff --git a/server/api/walletApi/bitcoin.ts b/server/api/walletApi/bitcoin.ts new file mode 100755 index 0000000..c6aeecf --- /dev/null +++ b/server/api/walletApi/bitcoin.ts @@ -0,0 +1,132 @@ +const Client = require('bitcoin-core') +import myError from '../myError' +import * as _ from 'lodash' + +export const bitcoinTransferFromExchange = async(value, receiver) => { + const client = new Client({ + network: 'testnet', + username: 'polychain', + password: '3QtnxrB7P5y4EpBdad1MkCeB2RHmArvcarw7udgXsAce', + host:"127.0.0.1", + port:8332 + }) + const query_options = { + "minimumAmount":value, + //"maximumAmount":value, + "maximumCount":1 , + } + return client.listUnspent(0, 9999999, [], true, query_options) + .then((unspentTx) => { + if(unspentTx[0]) { + const txid = unspentTx[0].txid + const vout = unspentTx[0].vout + const txValue = unspentTx[0].amount + let txFee = value*(0.001) + const StxFee = txFee.toFixed(8) + const totalValue = Number(value) + Number(StxFee) + let change = txValue - totalValue + const Schange = change.toFixed(8) + const nodeAddress = unspentTx[0].address + const input = [{ + "txid": txid, + "vout": vout, + }] + let output = [] + let obj = {} + let obj_2 ={} + obj[receiver] = value + obj_2[nodeAddress] = Schange + output.push(obj,obj_2) + return client.createRawTransaction(input,output) + .then((txHex) => { + return client.signRawTransactionWithWallet(txHex) + .then((sinedHex) => { + return client.sendRawTransaction(sinedHex.hex) + .then((txHashOrId) => { + return txHashOrId + }) + .catch((err) => { + console.log("error in sendsigned",err) + throw err + }) + }) + .catch((err)=>{ + console.log("error in sign ",err) + throw err + }) + }) + .catch((err )=> { + console.log("error in create raw tx",err) + throw err + }) + } else { + const error = new myError( + 'you do not have unspent trancaction', + 400, + 5, + 'تراکنش خرج نشده پیدا نشد', + 'خطا رخ داد' + ) + throw error + } + }) + .catch((err) => { + console.log("error in lisutxo",err) + throw err + }) +} + + +export const bitcoinTransferToExchangeById = async(txId) => { + const btcAddress = ["tb1qfpf6lss60wmle9wanetjxjjt6lc6z65mapk50s"] + const client = new Client({ + network: 'testnet', + username: 'polychain', + password: '3QtnxrB7P5y4EpBdad1MkCeB2RHmArvcarw7udgXsAce', + host: "127.0.0.1", + port: 8332 + }) + return client.getTransaction(txId) + .then((txInfo) => { + if(txInfo){ + const tx = _.find(txInfo.details, (i) => { return i.category.toString() === "receive" && btcAddress.includes(i.address.toString())}) + if(tx) { + let status + if(txInfo.confirmations>=6) + { + status = "Confirmed" + }else{ + status = "pending" + } + const info = { + "txAddress":tx.address, + "txAmount":tx.amount, + "status":status + } + return info + } else { + const error = new myError( + 'tx not found', + 400, + 5, + 'تراکنش یافت نشد', + 'خطا رخ داد' + ) + throw error + } + } else { + const error = new myError( + 'transaction not found', + 400, + 5, + 'تراکنش مربوطه پیدا نشد.', + 'خطا رخ داد' + ) + throw error + } + }) + .catch((err) => { + throw err + }) +} + diff --git a/server/api/walletApi/etheriuem.js b/server/api/walletApi/etheriuem.js new file mode 100755 index 0000000..2c59eba --- /dev/null +++ b/server/api/walletApi/etheriuem.js @@ -0,0 +1,201 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.getAccounts = exports.receiveEtherFromClient = exports.sendEther = exports.getEtheriumNonce = exports.checkTransaction = exports.getBalance = exports.createPersonalAccount = exports.createAccount = void 0; +var ethereumjs_common_1 = require("ethereumjs-common"); +var Web3 = require('web3'); +var Tx = require('ethereumjs-tx').Transaction; +exports.createAccount = function () { + var web3 = new Web3("http://localhost:8545"); + var data = web3.eth.accounts.create(); + return data; +}; +exports.createPersonalAccount = function () { + var web3 = new Web3("http://localhost:8545"); + return web3.eth.personal.newAccount("exchange") + .then(function (result) { + return result; + })["catch"](function (err) { + console.log(err); + }); +}; +exports.getBalance = function (account) { return __awaiter(void 0, void 0, void 0, function () { + var web3; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: return [4 /*yield*/, new Web3("http://localhost:8545")]; + case 1: + web3 = _a.sent(); + return [2 /*return*/, web3.eth.getBalance(account.toString()) + .then(function (balance) { + return balance; + })["catch"](function (err) { + throw err; + })]; + } + }); +}); }; +exports.checkTransaction = function (transactionId) { return __awaiter(void 0, void 0, void 0, function () { + var web3; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: return [4 /*yield*/, new Web3("http://localhost:8545")]; + case 1: + web3 = _a.sent(); + return [2 /*return*/, web3.eth.getTransactionReceipt(transactionId) + .then(function (txR) { + if (txR.blockNumber == undefined) { + throw "transaction receipt not found"; + } + else { + return web3.eth.getTransaction(transactionId) + .then(function (tx) { + if (tx.blockNumber == undefined || tx.value == undefined) { + throw "transaction receipt not found"; + } + else { + return tx; + } + })["catch"](function (err) { + throw err; + }); + } + })["catch"](function (err) { + throw (err); + })]; + } + }); +}); }; +exports.getEtheriumNonce = (function (address) { + var web3 = new Web3("http://localhost:8545"); + return web3.eth.getTransactionCount(address, 'pending') + .then(function (nonce) { + //got nonce proceed with creating and signing transaction + return nonce; + })["catch"](function (err) { + throw err; + }); +}); +exports.sendEther = function (account, value) { return __awaiter(void 0, void 0, void 0, function () { + var web3; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: return [4 /*yield*/, new Web3("http://localhost:8545")]; + case 1: + web3 = _a.sent(); + //unlock it for a period of 15 secs + return [2 /*return*/, web3.eth.personal.unlockAccount("0x868453967f6806ef86de7cf5e57a32ab28b875b4", "exchange", 15000) + .then(function (unlocked) { + return web3.eth.sendTransaction({ + //from: process.env.ADMIN_ETHERIUM_ACCOUNT_ADDRESS, + from: '0x868453967f6806ef86de7cf5e57a32ab28b875b4', + to: account.toString(), + value: web3.utils.toWei(value.toString()) + }) + .then(function (receipt) { + // then lock it + return web3.eth.personal.lockAccount("0x868453967f6806ef86de7cf5e57a32ab28b875b4") + .then(function () { + return receipt; + })["catch"](function (err) { + return receipt; + }); + })["catch"](function (err) { + throw err; + }); + })["catch"](function (err) { + throw (err); + })]; + } + }); +}); }; +exports.receiveEtherFromClient = function (transactionHash) { + //receive transaction from the ui and send it + var web3 = new Web3("http://localhost:8545"); + var rawTx = undefined; + var transaction = undefined; + //custom network + var customCommon = ethereumjs_common_1["default"].forCustomChain('mainnet', { + name: 'my-network', + networkId: 1981, + chainId: 1981 + }, 'petersburg'); + var preData = function () { + var privateKey = Buffer.from('64061456066baa81c5097c895b5176fb3e1452eaf6f6776e2d7bf07ddb9accfe', 'hex'); + //parameters should be hex string starting with 0x + var txParams = { + nonce: '0x01', + gas: 50002, + gasPrice: Number(web3.utils.toWei('601', 'gwei')), + to: '0x868453967f6806ef86de7cf5e57a32ab28b875b4', + value: 10000003 + }; + // The second parameter is not necessary if these values are used + var tx = new Tx(txParams, { common: customCommon }); + tx.sign(privateKey); + var serializedTx = tx.serialize(); + return rawTx = '0x' + serializedTx.toString('hex'); + }; + return Promise.all([preData()]) + .then(function () { + return web3.eth.sendSignedTransaction(rawTx) + .then(function (result) { + return result; + })["catch"](function (err) { + throw err; + }); + })["catch"](function (err) { + throw err; + }); +}; +exports.getAccounts = function () { return __awaiter(void 0, void 0, void 0, function () { + var web3; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: return [4 /*yield*/, new Web3("http://localhost:8545")]; + case 1: + web3 = _a.sent(); + return [2 /*return*/, web3.eth.getAccounts() + .then(function (result) { + console.log("all acounts is ", result); + })["catch"](function (err) { + throw err; + })]; + } + }); +}); }; diff --git a/server/api/walletApi/etheriuem.ts b/server/api/walletApi/etheriuem.ts new file mode 100755 index 0000000..ecc6482 --- /dev/null +++ b/server/api/walletApi/etheriuem.ts @@ -0,0 +1,157 @@ +import Common from 'ethereumjs-common' + +const Web3 = require('web3'); +const Tx = require('ethereumjs-tx').Transaction; + +export const createAccount = () => { + const web3 = new Web3( "http://localhost:8545"); + const data = web3.eth.accounts.create() + return data +} + +export const createPersonalAccount = () => { + const web3 = new Web3( "http://localhost:8545"); + return web3.eth.personal.newAccount("exchange") + .then((result) => { + return result + }) + .catch((err) => { + console.log(err) + }) +} + +export const getBalance = async (account) => { + const web3 = await new Web3( "http://localhost:8545"); + return web3.eth.getBalance(account.toString()) + .then((balance) => { + return balance + }) + .catch((err) => { + throw err + }) +} + +export const checkTransaction = async (transactionId) => { + const web3 = await new Web3( "http://localhost:8545"); + return web3.eth.getTransactionReceipt(transactionId) + .then((txR) => { + if (txR.blockNumber == undefined) { + throw "transaction receipt not found"; + } else { + return web3.eth.getTransaction(transactionId) + .then((tx) => { + if (tx.blockNumber == undefined|| tx.value == undefined) { + throw "transaction receipt not found"; + } else { + return tx + } + }) + .catch((err) => { + throw err + }) + } + }).catch((err)=>{ + throw(err) + }) +} + +export const getEtheriumNonce=((address) => { + const web3 = new Web3( "http://localhost:8545"); + return web3.eth.getTransactionCount(address,'pending') + .then((nonce) => { + //got nonce proceed with creating and signing transaction + return nonce; + }) + .catch((err) => { + throw err + }) +}) + +export const sendEther = async (account,value) => { + const web3 = await new Web3( "http://localhost:8545"); + //unlock it for a period of 15 secs + return web3.eth.personal.unlockAccount("0x868453967f6806ef86de7cf5e57a32ab28b875b4","exchange", 15000) + .then((unlocked) => { + return web3.eth.sendTransaction({ + //from: process.env.ADMIN_ETHERIUM_ACCOUNT_ADDRESS, + from: '0x868453967f6806ef86de7cf5e57a32ab28b875b4', + to: account.toString(), + value: web3.utils.toWei (value.toString()) + }) + .then((receipt) => { + // then lock it + return web3.eth.personal.lockAccount("0x868453967f6806ef86de7cf5e57a32ab28b875b4") + .then(() => { + return receipt + }) + .catch((err) => { + return receipt + }) + }) + .catch((err) =>{ + throw err + }) + }).catch((err)=>{ + throw(err) + }) +} + +export const receiveEtherFromClient = (transactionHash) => { + //receive transaction from the ui and send it + const web3 = new Web3( "http://localhost:8545"); + let rawTx = undefined + let transaction = undefined + //custom network + const customCommon = Common.forCustomChain( + 'mainnet', + { + name: 'my-network', + networkId: 1981, + chainId: 1981, + }, + 'petersburg', + ) + const preData = () => { + const privateKey = Buffer.from( + '64061456066baa81c5097c895b5176fb3e1452eaf6f6776e2d7bf07ddb9accfe', + 'hex' + ) + //parameters should be hex string starting with 0x + const txParams = { + nonce: '0x01', + gas: 50002, + gasPrice: Number(web3.utils.toWei('601', 'gwei')), + to: '0x868453967f6806ef86de7cf5e57a32ab28b875b4', + value: 10000003 + } + // The second parameter is not necessary if these values are used + const tx = new Tx(txParams,{common : customCommon}) + tx.sign(privateKey) + const serializedTx = tx.serialize() + return rawTx = '0x' + serializedTx.toString('hex'); + } + return Promise.all([preData()]) + .then(()=>{ + return web3.eth.sendSignedTransaction(rawTx) + .then((result) => { + return result; + }) + .catch((err) => { + throw err; + }) + }) + .catch((err) => { + throw err + }) +} + +export const getAccounts = async () => { + const web3 = await new Web3( "http://localhost:8545"); + return web3.eth.getAccounts() + .then((result)=>{ + console.log("all acounts is ", result) + }) + .catch((err)=>{ + throw err + }) +} diff --git a/server/api/walletApi/transferFromExchange.js b/server/api/walletApi/transferFromExchange.js new file mode 100755 index 0000000..02326e3 --- /dev/null +++ b/server/api/walletApi/transferFromExchange.js @@ -0,0 +1,220 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.transferFromExchangeApi = void 0; +var myError_1 = require("../myError"); +var currencies_1 = require("../../db/currencies"); +var bitcoin = require("../walletApi/bitcoin"); +var etheriuem = require("../walletApi/etheriuem"); +var mongoose = require("mongoose"); +var user_1 = require("../../db/user"); +var _ = require("lodash"); +var pendingTransfers_1 = require("../../db/pendingTransfers"); +exports.transferFromExchangeApi = function (currencyId, value, receiver, userId) { return __awaiter(void 0, void 0, void 0, function () { + var info, resObj, checkStatus, session; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + checkStatus = function () { + return null; + }; + return [4 /*yield*/, mongoose.startSession()]; + case 1: + session = _a.sent(); + return [2 /*return*/, session.withTransaction(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + return [2 /*return*/, user_1.User.findOne({ _id: userId }).session(session) + .then(function (user) { return __awaiter(void 0, void 0, void 0, function () { + var error; + return __generator(this, function (_a) { + if (user) { + return [2 /*return*/, currencies_1.Currencies.findOne({ _id: currencyId }) + .then(function (cur) { return __awaiter(void 0, void 0, void 0, function () { + var CurAbName, curInWall_1, error, error, error; + return __generator(this, function (_a) { + CurAbName = ""; + if (cur) { + curInWall_1 = _.find(user.wallet, function (i) { return i.currency.toString() === currencyId.toString(); }); + if (curInWall_1) { + if (curInWall_1.value >= Number(value)) { + CurAbName = cur.ab_name; + switch (CurAbName) { + case "BTC": + checkStatus = function () { + return bitcoin.bitcoinTransferFromExchange(value, receiver) + .then(function (txHash) { + info = { + status: "pending", + txHash: txHash + }; + })["catch"](function (err) { + throw err; + }); + }; + case "ETH": + return [2 /*return*/, etheriuem.sendEther(receiver.toString(), value) + .then(function (result) { return __awaiter(void 0, void 0, void 0, function () { + var bodySuccessfulOffer, bodyTransaction; + return __generator(this, function (_a) { + if (result && result.transactionHash) { + bodySuccessfulOffer = { + userId: user._id, + transactions: [] + }; + bodyTransaction = { + txId: result.transactionHash, + currencyId: currencyId, + currencyName: CurAbName, + value: Number(value), + type: 'send' + }; + bodySuccessfulOffer.transactions.push(bodyTransaction); + } + else if (result) { + throw ("could not get any transaction " + result); + } + else { + throw ("could not get result "); + } + return [2 /*return*/]; + }); + }); })["catch"](function (err) { + throw err; + })]; + case "TRX": + } + return [2 /*return*/, Promise.all([checkStatus()]) + .then(function () { + return pendingTransfers_1.PendingTransfers.findOne({ userId: userId }).session(session) + .then(function (userPending) { return __awaiter(void 0, void 0, void 0, function () { + var usrPending; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!userPending) return [3 /*break*/, 2]; + userPending.transactions.push({ + txId: info.txHash, + currencyId: currencyId, + currencyName: CurAbName, + value: value, + type: "send" + }); + return [4 /*yield*/, userPending.save()]; + case 1: + _a.sent(); + return [3 /*break*/, 4]; + case 2: + usrPending = { + userId: userId, + transactions: [{ + txId: info.txHash, + currencyId: currencyId, + currencyName: CurAbName, + value: value, + type: "id" + }] + }; + return [4 /*yield*/, pendingTransfers_1.PendingTransfers.create([usrPending], { session: session })]; + case 3: + _a.sent(); + _a.label = 4; + case 4: + curInWall_1.value -= value; + return [4 /*yield*/, user.save()]; + case 5: + _a.sent(); + resObj = + { + status: "success", + txValue: value, + txHash: info.txHash + }; + return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw err; + }); + })["catch"](function (err) { + throw err; + })]; + } + else { + error = new myError_1["default"]('you do not have enough currency ', 400, 5, 'موجودی کافی نمی باشد', 'خطا رخ داد'); + throw error; + } + } + else { + error = new myError_1["default"]('currency not found in user wallet', 400, 5, 'ارز در کیف پول پیدا نشد', 'خطا رخ داد'); + throw error; + } + } + else { + error = new myError_1["default"]('currency not found', 400, 5, 'ارز پیدا نشد', 'خطا رخ داد'); + throw error; + } + return [2 /*return*/]; + }); + }); })["catch"](function (err) { + throw err; + })]; + } + else { + error = new myError_1["default"]('user not found', 400, 5, 'کاربر پیدا نشد.', 'خطا رخ داد'); + throw error; + } + return [2 /*return*/]; + }); + }); })["catch"](function (err) { + throw err; + })]; + }); + }); }) + .then(function () { + return resObj; + })["catch"](function (err) { + console.log("error in with Transaction", err); + throw ("error in with transaction"); + })["finally"](function () { + session.endSession(); + })["catch"](function (err) { + throw err; + })]; + } + }); +}); }; diff --git a/server/api/walletApi/transferFromExchange.ts b/server/api/walletApi/transferFromExchange.ts new file mode 100755 index 0000000..a1da149 --- /dev/null +++ b/server/api/walletApi/transferFromExchange.ts @@ -0,0 +1,189 @@ +import myError from '../myError' +import { Currencies } from '../../db/currencies' +import * as bitcoin from '../walletApi/bitcoin' +import * as etheriuem from '../walletApi/etheriuem' +import * as tron from '../walletApi/tron' +import * as mongoose from 'mongoose' +import { User } from '../../db/user' +import * as _ from 'lodash' +import { PendingTransfers } from '../../db/pendingTransfers' +import { SuccessfulTransfers } from '../../db/successfulTransfers' + +export const transferFromExchangeApi = async(currencyId, value, receiver, userId) => { + let info + let resObj + let checkStatus = () => { + return null + } + const session = await mongoose.startSession() + return session.withTransaction(async() => { + return User.findOne({_id:userId}).session(session) + .then(async (user)=>{ + if(user){ + return Currencies.findOne({_id:currencyId}) + .then(async(cur) => { + let CurAbName = "" + if(cur){ + let curInWall = _.find(user.wallet, (i) => { return i.currency.toString() === currencyId.toString()}) + if(curInWall) { + + if(curInWall.value >= Number(value)){ + CurAbName = cur.ab_name + switch(CurAbName) { + case "BTC": + checkStatus = () => { + return bitcoin.bitcoinTransferFromExchange(value,receiver) + .then((txHash) => { + info = { + status:"pending", + txHash:txHash + } + }) + .catch((err)=>{ + throw err + }) + } + + + case "ETH": + return etheriuem.sendEther(receiver.toString(),value) + .then(async (result) => { + if(result&&result.transactionHash) { + const bodySuccessfulOffer = { + userId: user._id , + transactions : [] + } + const bodyTransaction = { + txId : result.transactionHash, + currencyId : currencyId, + currencyName : CurAbName, + value : Number(value), + type : 'send' + } + bodySuccessfulOffer.transactions.push(bodyTransaction) + } else if(result) { + throw ("could not get any transaction "+ result) + } else { + throw ("could not get result ") + } + }) + .catch((err) => { + throw err + }) + + case "TRX": + } + return Promise.all([checkStatus()]) + .then(() =>{ + return PendingTransfers.findOne({ userId:userId }).session(session) + .then(async (userPending) => { + if(userPending){ + userPending.transactions.push({ + txId: info.txHash, + currencyId: currencyId, + currencyName: CurAbName, + value: value, + type: "send" + }) + await userPending.save() + + } else { + const usrPending = { + userId: userId, + transactions: [{ + txId: info.txHash, + currencyId: currencyId, + currencyName: CurAbName, + value: value, + type: "id" + }] + } + await PendingTransfers.create([usrPending],{ session }) + } + curInWall.value -= value + await user.save() + resObj = + { + status:"success", + txValue:value, + txHash:info.txHash + } + }).catch((err)=>{ + throw err + }) + }).catch((err)=>{ + throw err + }) + + } else { + const error = new myError( + 'you do not have enough currency ', + 400, + 5, + 'موجودی کافی نمی باشد', + 'خطا رخ داد' + ) + throw error + } + + } else { + const error = new myError( + 'currency not found in user wallet', + 400, + 5, + 'ارز در کیف پول پیدا نشد', + 'خطا رخ داد' + ) + throw error + + } + + + + } else { + const error = new myError( + 'currency not found', + 400, + 5, + 'ارز پیدا نشد', + 'خطا رخ داد' + ) + throw error + } + + }).catch((err)=>{ + throw err + }) + } else { + const error = new myError( + 'user not found', + 400, + 5, + 'کاربر پیدا نشد.', + 'خطا رخ داد' + ) + throw error + } + }).catch((err)=>{ + throw err + }) + }) + .then(() => { + + return resObj + + + }) + .catch((err) => { + console.log("error in with Transaction",err) + throw("error in with transaction") + }) + .finally(() => { + session.endSession() + }) + + + .catch((err) => { + throw err + }) +} diff --git a/server/api/walletApi/transferInWithTxId.js b/server/api/walletApi/transferInWithTxId.js new file mode 100755 index 0000000..3a25191 --- /dev/null +++ b/server/api/walletApi/transferInWithTxId.js @@ -0,0 +1,128 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.transferInWithTxId = void 0; +var Client = require('bitcoin-core'); +var _ = require("lodash"); +exports.transferInWithTxId = function (currency, txId) { return __awaiter(void 0, void 0, void 0, function () { + var client_1; + return __generator(this, function (_a) { + switch (currency) { + case "BTC": + client_1 = new Client({ + network: 'testnet', + username: 'polychain', + password: '3QtnxrB7P5y4EpBdad1MkCeB2RHmArvcarw7udgXsAce', + host: "127.0.0.1", + port: 8332 + }); + client_1.listTransactions("*", 100, 0) + .theb(function (txs) { + var tx = _.find(txs, function (i) { return i.txid.toString() === txId.toString(); }); + if (tx) { + if (tx.address === "node address") { + var amount_1 = tx.amount; + client_1.getBlockCount() + .then(function (blockCount) { + if (blockCount - Number(tx.blockindex) > 6) { + return amount_1; + } + else { + // + } + })["catch"](function (err) { + throw err; + }); + } + else { + } + } + })["catch"](function (err) { + throw err; + }); + break; + case "ETH": + // + break; + case "TRX": + // + break; + } + return [2 /*return*/]; + }); +}); }; +// fetch("connect to your bitcoin node",{ +// method: "POST", +// body:{"jsonrpc": "1.0", "id":"curltest", +// "method": "listtransactions", +// "params": [txId] +// }, +// headers:header +// }) +// .then(res => res.json()) +// .then((txs) => { +// const tx = _.find(txs, (i) => { return i.txid.toString()=== txId.toString()}) +// if(tx){ +// const blockIndex = Number(tx.blockindex) +// const txValue = Number(tx.vout) +// fetch("connect to your bitcoin node",{ +// method: "POST", +// body:{"jsonrpc": "1.0", "id":"curltest", +// "method": "getblockcount", +// "params": [] +// }, +// headers:header +// }) +// .then(res => res.json()) +// .then((blockCount) => { +// if(Number(blockCount)-blockIndex>=6) { +// let cur = _.find(user.wallet, (i) => { return i.currency.toString()=== currencyId.toString() }) +// cur.value += txValue +// } else { +// //wait for transaction confirmation +// } +// }).catch((err)=>{ +// next(err) +// }) +// } else { +// //throw errrrrorrrrrr +// } +// }) +// .catch((err) => { +// next(err) +// }) diff --git a/server/api/walletApi/transferTo.js b/server/api/walletApi/transferTo.js new file mode 100755 index 0000000..74fd57b --- /dev/null +++ b/server/api/walletApi/transferTo.js @@ -0,0 +1,114 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.transferToApi = void 0; +var Client = require('bitcoin-core'); +exports.transferToApi = function (currency, value, receiver) { return __awaiter(void 0, void 0, void 0, function () { + var client_1, query_options; + return __generator(this, function (_a) { + switch (currency) { + case "BTC": + client_1 = new Client({ + network: 'testnet', + username: 'polychain', + password: '3QtnxrB7P5y4EpBdad1MkCeB2RHmArvcarw7udgXsAce', + host: "127.0.0.1", + port: 8332 + }); + query_options = { + "minimumAmount": value + }; + client_1.listUnspent(1, 1, [], true, query_options) + .then(function (unspentTx) { + if (unspentTx[0]) { + var txid = unspentTx[0].txid; + var txValue = Number(unspentTx[0].amount); + var change = txValue - value; + var nodeAddress_1 = unspentTx[0].address; + var input = [{ + "txid": txid, + "vout": Number(txValue) + }]; + var output = [ + { + "receiver": txValue, + "nodeAddress": change + }, + { + "data": "Hi" + }, + ]; + client_1.createRawTransaction(input, output) + .then(function (txHex) { + client_1.dumpprivkey(nodeAddress_1) + .then(function (priKey) { + client_1.signRawTransactionWithKey(txHex, [priKey]) + .then(function (sinedHex) { + client_1.sendRawTransaction(sinedHex) + .then(function (txHashOrId) { + return txHashOrId; + })["catch"](function (err) { + throw (err); + }); + })["catch"](function (err) { + throw (err); + }); + })["catch"](function (err) { + throw (err); + }); + })["catch"](function (err) { + throw (err); + }); + } + else { + // throw err + } + })["catch"](function (err) { + console.log('the error is', err); + }); + break; + case "ETH": + // + break; + case "TRX": + // + break; + } + return [2 /*return*/]; + }); +}); }; diff --git a/server/api/walletApi/transferToExchange.js b/server/api/walletApi/transferToExchange.js new file mode 100755 index 0000000..a4501a9 --- /dev/null +++ b/server/api/walletApi/transferToExchange.js @@ -0,0 +1,100 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.transferToExchangeApi = void 0; +var Client = require('bitcoin-core'); +var myError_1 = require("../myError"); +var currencies_1 = require("../../db/currencies"); +exports.transferToExchangeApi = function (currencyId, signedRawTxHex, value) { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + currencies_1.Currencies.findOne({ _id: currencyId }) + .then(function (cur) { + var CurAbName = ""; + if (cur) { + value = Number(value); + CurAbName = cur.ab_name; + switch (CurAbName) { + case "BTC": + // const client = new Client({ + // network: 'testnet', + // username: 'polychain', + // password: '3QtnxrB7P5y4EpBdad1MkCeB2RHmArvcarw7udgXsAce', + // host:"127.0.0.1", + // port:8332 + // }) + // client.decodeRawTransaction(signedRawTxHex) + // .then((tx) => { + // if(tx) { + // const txValue = Number(tx[0].vout[0].value) + // if(txValue===Number(value)) { + // client.sendRawTransaction(signedRawTxHex) + // .then((txHashOrId) => { + // return txHashOrId + // }) + // .catch((err) => { + // throw(err) + // }) + // } else { + // // + // } + // } else { + // // + // } + // }) + // .catch((err) => { + // throw err + // }) + break; + case "ETH": + // + break; + case "TRX": + // + break; + } + } + else { + var error = new myError_1["default"]('currency not found', 400, 5, 'ارز مربوطه پیدا نشد.', 'خطا رخ داد'); + throw error; + } + })["catch"](function (err) { + throw err; + }); + return [2 /*return*/]; + }); +}); }; diff --git a/server/api/walletApi/transferToExchange.ts b/server/api/walletApi/transferToExchange.ts new file mode 100755 index 0000000..7d73183 --- /dev/null +++ b/server/api/walletApi/transferToExchange.ts @@ -0,0 +1,70 @@ +const Client = require('bitcoin-core') +import { conformsTo } from 'lodash' +import myError from '../myError' +import { Currencies } from '../../db/currencies' +export const transferToExchangeApi = async(currencyId,signedRawTxHex,value) => { + Currencies.findOne({_id:currencyId}) + .then((cur)=>{ + let CurAbName = "" + if(cur){ + value = Number(value) + CurAbName = cur.ab_name + switch(CurAbName) { + case "BTC": + // const client = new Client({ + // network: 'testnet', + // username: 'polychain', + // password: '3QtnxrB7P5y4EpBdad1MkCeB2RHmArvcarw7udgXsAce', + // host:"127.0.0.1", + // port:8332 + // }) + // client.decodeRawTransaction(signedRawTxHex) + // .then((tx) => { + // if(tx) { + // const txValue = Number(tx[0].vout[0].value) + // if(txValue===Number(value)) { + // client.sendRawTransaction(signedRawTxHex) + // .then((txHashOrId) => { + // return txHashOrId + // }) + // .catch((err) => { + // throw(err) + // }) + // } else { + // // + // } + + // } else { + // // + // } + // }) + // .catch((err) => { + // throw err + // }) + break; + + case "ETH": + // + break; + + case "TRX": + // + break; + + } + }else{ + const error = new myError( + 'currency not found', + 400, + 5, + 'ارز مربوطه پیدا نشد.', + 'خطا رخ داد' + ) + throw error + } + }).catch((err)=>{ + throw err + }) + +} + diff --git a/server/api/walletApi/transferToExchangeById.js b/server/api/walletApi/transferToExchangeById.js new file mode 100755 index 0000000..a53f22b --- /dev/null +++ b/server/api/walletApi/transferToExchangeById.js @@ -0,0 +1,363 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.transferToExchangeByIdApi = void 0; +var _ = require("lodash"); +var myError_1 = require("../myError"); +var currencies_1 = require("../../db/currencies"); +var user_1 = require("../../db/user"); +var mongoose = require("mongoose"); +var bitcoin = require("../walletApi/bitcoin"); +var etherium = require("./etheriuem"); +var tron = require("./tron"); +var pendingTransfers_1 = require("../../db/pendingTransfers"); +var successfulTransfers_1 = require("../../db/successfulTransfers"); +exports.transferToExchangeByIdApi = function (currencyId, txId, userId) { return __awaiter(void 0, void 0, void 0, function () { + var info, resObj, userHaveDoc, checkStatus, session; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + userHaveDoc = false; + checkStatus = function () { + return null; + }; + return [4 /*yield*/, mongoose.startSession()]; + case 1: + session = _a.sent(); + return [2 /*return*/, session.withTransaction(function () { + return user_1.User.findOne({ _id: userId }).session(session) + .then(function (user) { + if (user) { + return pendingTransfers_1.PendingTransfers.findOne({ userId: userId }) + .then(function (userPending) { + if (userPending && userPending.userId.toString() === userId.toString()) { + userHaveDoc = true; + var pendingTx = _.find(userPending.transactions, function (i) { return i.txId.toString() === txId.toString(); }); + if (pendingTx) { + var error = new myError_1["default"]('transaction already exsist', 400, 5, 'تراکنش قبلا وجود دارد', 'خطا رخ داد'); + throw error; + } + } + return currencies_1.Currencies.findOne({ _id: currencyId }) + .then(function (cur) { + var CurAbName = ""; + if (cur) { + CurAbName = cur.ab_name; + switch (CurAbName) { + case "BTC": + checkStatus = function () { + return bitcoin.bitcoinTransferToExchangeById(txId) + .then(function (result) { + info = result; + })["catch"](function (err) { + throw err; + }); + }; + break; + case "ETH": + return etherium.checkTransaction(txId) + .then(function (transaction) { + if (transaction && transaction.hash.toString() === txId.toString()) { + var curInWall = _.find(user.wallet, function (i) { return i.currency.toString() === currencyId.toString(); }); + if (curInWall) { + curInWall.value += Number(transaction.value); + } + else { + } + return; + } + else { + throw "transaction not valid"; + } + })["catch"](function (err) { + console.log("api error: ", err); + }); + // + case "TRX": + return tron.validateByTXId(txId) + .then(function (transaction) { + if (transaction.result) { + var resObj_1 = { + status: "successful", + txValue: transaction + }; + return resObj_1; + } + else { + var resObj_2 = { + status: "pending", + txValue: transaction + }; + } + })["catch"](function (err) { + throw (err); + }); + // default + } + return Promise.all([checkStatus()]) + .then(function () { + if (userHaveDoc) { + userPending.transactions.push({ + txId: txId, + currencyId: currencyId, + currencyName: CurAbName, + value: info.txAmount, + type: "id" + }); + userPending.save() + .then(function () { + if (info.status === 'Confirmed') { + return successfulTransfers_1.SuccessfulTransfers.findOne({ userId: userId }).session(session) + .then(function (userSuccess) { return __awaiter(void 0, void 0, void 0, function () { + var usrSuccess; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!(userSuccess && userSuccess.userId.toString() === userId.toString())) return [3 /*break*/, 2]; + userSuccess.transactions.push({ + txId: txId, + currencyId: currencyId, + currencyName: CurAbName, + value: info.txAmount, + type: "id" + }); + return [4 /*yield*/, userSuccess.save()]; + case 1: + _a.sent(); + return [3 /*break*/, 4]; + case 2: + usrSuccess = { + userId: userId, + transactions: [{ + txId: txId, + currencyId: currencyId, + currencyName: CurAbName, + value: info.txAmount, + type: "id" + }] + }; + return [4 /*yield*/, successfulTransfers_1.SuccessfulTransfers.create([usrSuccess], { session: session })]; + case 3: + _a.sent(); + _a.label = 4; + case 4: return [2 /*return*/, pendingTransfers_1.PendingTransfers.findOne({ userId: userId }).session(session) + .then(function (userPendinAfterSave) { return __awaiter(void 0, void 0, void 0, function () { + var cur; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + userPendinAfterSave.transactions = _.filter(userPendinAfterSave.transactions, function (i) { return i.txId.toString() !== txId.toString(); }); + return [4 /*yield*/, userPendinAfterSave.save()]; + case 1: + _a.sent(); + cur = _.find(user.wallet, function (i) { return i.currency.toString() === currencyId.toString(); }); + if (!cur) return [3 /*break*/, 3]; + cur.value += info.txAmount; + return [4 /*yield*/, user.save()]; + case 2: + _a.sent(); + return [3 /*break*/, 5]; + case 3: + user.wallet.push({ + currency: currencyId, + value: info.txAmount + }); + return [4 /*yield*/, user.save()]; + case 4: + _a.sent(); + _a.label = 5; + case 5: + resObj = { + status: 'successful', + value: info.txAmount + }; + return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw err; + })]; + } + }); + }); })["catch"](function (err) { + throw err; + }); + } + else { + resObj = { + status: 'pending', + value: info.txAmount + }; + } + })["catch"](function (err) { + throw err; + }); + } + else { + var usrPending = { + userId: userId, + transactions: [{ + txId: txId, + currencyId: currencyId, + currencyName: CurAbName, + value: info.txAmount, + type: "id" + }] + }; + pendingTransfers_1.PendingTransfers.create([usrPending]) + .then(function () { + if (info.status === 'Confirmed') { + return successfulTransfers_1.SuccessfulTransfers.findOne({ userId: userId }).session(session) + .then(function (userSuccess) { return __awaiter(void 0, void 0, void 0, function () { + var usrSuccess; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!(userSuccess && userSuccess.userId.toString() === userId.toString())) return [3 /*break*/, 2]; + userSuccess.transactions.push({ + txId: txId, + currencyId: currencyId, + currencyName: CurAbName, + value: info.txAmount, + type: "id" + }); + return [4 /*yield*/, userSuccess.save()]; + case 1: + _a.sent(); + return [3 /*break*/, 4]; + case 2: + usrSuccess = { + userId: userId, + transactions: [{ + txId: txId, + currencyId: currencyId, + currencyName: CurAbName, + value: info.txAmount, + type: "id" + }] + }; + return [4 /*yield*/, successfulTransfers_1.SuccessfulTransfers.create([usrSuccess], { session: session })]; + case 3: + _a.sent(); + _a.label = 4; + case 4: return [2 /*return*/, pendingTransfers_1.PendingTransfers.findOne({ userId: userId }).session(session) + .then(function (userPendinAfterSave) { return __awaiter(void 0, void 0, void 0, function () { + var cur; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + userPendinAfterSave.transactions = _.filter(userPendinAfterSave.transactions, function (i) { return i.txId.toString() !== txId.toString(); }); + return [4 /*yield*/, userPendinAfterSave.save()]; + case 1: + _a.sent(); + cur = _.find(user.wallet, function (i) { return i.currency.toString() === currencyId.toString(); }); + if (!cur) return [3 /*break*/, 3]; + cur.value += info.txAmount; + return [4 /*yield*/, user.save()]; + case 2: + _a.sent(); + return [3 /*break*/, 5]; + case 3: + user.wallet.push({ + currency: currencyId, + value: info.txAmount + }); + return [4 /*yield*/, user.save()]; + case 4: + _a.sent(); + _a.label = 5; + case 5: + resObj = { + status: 'successful', + value: info.txAmount + }; + return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw err; + })]; + } + }); + }); })["catch"](function (err) { + throw err; + }); + } + else { + resObj = { + status: 'pending', + value: info.txAmount + }; + } + })["catch"](function (err) { + throw err; + }); + } + })["catch"](function (err) { + throw err; + }); + } + else { + var error = new myError_1["default"]('currency not found', 400, 5, 'ارز مربوطه پیدا نشد.', 'خطا رخ داد'); + throw error; + } + })["catch"](function (err) { + throw err; + }); + })["catch"](function (err) { + throw err; + }); + } + else { + var error = new myError_1["default"]('user not found', 400, 5, 'کاربر پیدا نشد.', 'خطا رخ داد'); + throw error; + } + })["catch"](function (err) { + throw err; + }); + }) + .then(function () { + return resObj; + })["catch"](function (err) { + throw ("error in with Transaction" + ":" + err); + })["finally"](function () { + session.endSession(); + })]; + } + }); +}); }; diff --git a/server/api/walletApi/transferToExchangeById.ts b/server/api/walletApi/transferToExchangeById.ts new file mode 100755 index 0000000..5259d5f --- /dev/null +++ b/server/api/walletApi/transferToExchangeById.ts @@ -0,0 +1,291 @@ +import * as _ from 'lodash' +import myError from '../myError' +import { Currencies } from '../../db/currencies' +import { User } from '../../db/user' +import * as mongoose from 'mongoose' +import * as bitcoin from '../walletApi/bitcoin' +import * as etherium from './etheriuem' +import * as tron from './tron' +import { PendingTransfers } from '../../db/pendingTransfers' +import { SuccessfulTransfers } from '../../db/successfulTransfers' +export const transferToExchangeByIdApi = async(currencyId, txId, userId) => { + let info + let resObj + let userHaveDoc = false + let checkStatus = () => { + return null + } + const session = await mongoose.startSession() + return session.withTransaction(() => { + return User.findOne({ _id: userId }).session(session) + .then((user) => { + if(user) { + return PendingTransfers.findOne({ userId: userId }) + .then((userPending) => { + if(userPending && userPending.userId.toString() === userId.toString()) { + userHaveDoc = true + let pendingTx = _.find(userPending.transactions, (i) => { return i.txId.toString() === txId.toString() }) + if(pendingTx) { + const error = new myError( + 'transaction already exsist', + 400, + 5, + 'تراکنش قبلا وجود دارد', + 'خطا رخ داد' + ) + throw error + } + } + return Currencies.findOne({ _id: currencyId }) + .then((cur) => { + let CurAbName = "" + if(cur) { + CurAbName = cur.ab_name + switch(CurAbName) { + case "BTC": + checkStatus = () => { + return bitcoin.bitcoinTransferToExchangeById(txId) + .then((result) => { + info = result + }) + .catch((err) => { + throw err + }) + } + break; + case "ETH": + return etherium.checkTransaction(txId) + .then((transaction) => { + if(transaction && transaction.hash.toString() === txId.toString()) { + let curInWall = _.find(user.wallet, (i) => { return i.currency.toString()=== currencyId.toString()}) + if(curInWall) { + curInWall.value += Number(transaction.value) + } else { + + } + return + } else { + throw "transaction not valid" + } + }) + .catch((err)=>{ + console.log("api error: ",err) + }) + // + case "TRX": + return tron.validateByTXId(txId) + .then((transaction: any) => { + if(transaction.result) { + const resObj = { + status:"successful", + txValue : transaction + } + return resObj + } else { + const resObj = { + status:"pending", + txValue : transaction + } + } + }) + .catch((err) => { + throw(err) + }) + + // default + } + return Promise.all([checkStatus()]) + .then(() => { + if(userHaveDoc) { + userPending.transactions.push({ + txId:txId, + currencyId:currencyId, + currencyName:CurAbName, + value:info.txAmount, + type:"id" + }) + userPending.save() + .then(() => { + if(info.status === 'Confirmed') { + return SuccessfulTransfers.findOne({ userId: userId }).session(session) + .then(async (userSuccess) => { + if(userSuccess && userSuccess.userId.toString() === userId.toString()) { + userSuccess.transactions.push({ + txId, + currencyId, + currencyName: CurAbName, + value: info.txAmount, + type: "id" + }) + await userSuccess.save() + } else { + const usrSuccess = { + userId:userId, + transactions: [{ + txId, + currencyId, + currencyName: CurAbName, + value: info.txAmount, + type: "id" + }] + } + await SuccessfulTransfers.create([usrSuccess], { session }) + } + return PendingTransfers.findOne({ userId:userId }).session(session) + .then(async (userPendinAfterSave) => { + userPendinAfterSave.transactions = _.filter(userPendinAfterSave.transactions, (i) => { return i.txId.toString() !== txId.toString() }) + await userPendinAfterSave.save() + let cur = _.find(user.wallet, (i) => { return i.currency.toString() === currencyId.toString()}) + if(cur) { + cur.value +=info.txAmount + await user.save() + } else { + user.wallet.push({ + currency: currencyId, + value: info.txAmount + }) + await user.save() + } + resObj = { + status: 'successful', + value: info.txAmount + } + }).catch((err)=>{ + throw err + }) + }).catch((err)=>{ + throw err + }) + } else { + resObj = { + status: 'pending', + value: info.txAmount + } + } + }) + .catch((err) => { + throw err + }) + } else { + const usrPending = { + userId:userId, + transactions: [{ + txId, + currencyId, + currencyName: CurAbName, + value: info.txAmount, + type: "id" + }] + } + PendingTransfers.create([usrPending]) + .then(() => { + if(info.status === 'Confirmed') { + return SuccessfulTransfers.findOne({ userId: userId }).session(session) + .then(async (userSuccess) => { + if(userSuccess && userSuccess.userId.toString() === userId.toString()) { + userSuccess.transactions.push({ + txId, + currencyId, + currencyName: CurAbName, + value: info.txAmount, + type: "id" + }) + await userSuccess.save() + } else { + const usrSuccess = { + userId:userId, + transactions: [{ + txId, + currencyId, + currencyName: CurAbName, + value: info.txAmount, + type: "id" + }] + } + await SuccessfulTransfers.create([usrSuccess], { session }) + } + return PendingTransfers.findOne({ userId:userId }).session(session) + .then(async (userPendinAfterSave) => { + userPendinAfterSave.transactions = _.filter(userPendinAfterSave.transactions, (i) => { return i.txId.toString() !== txId.toString() }) + await userPendinAfterSave.save() + let cur = _.find(user.wallet, (i) => { return i.currency.toString() === currencyId.toString()}) + if(cur) { + cur.value +=info.txAmount + await user.save() + } else { + user.wallet.push({ + currency: currencyId, + value: info.txAmount + }) + await user.save() + } + resObj = { + status: 'successful', + value: info.txAmount + } + }).catch((err)=>{ + throw err + }) + }).catch((err)=>{ + throw err + }) + } else { + resObj = { + status: 'pending', + value: info.txAmount + } + } + }) + .catch((err) => { + throw err + }) + } + }) + .catch((err) => { + throw err + }) + + } else { + const error = new myError( + 'currency not found', + 400, + 5, + 'ارز مربوطه پیدا نشد.', + 'خطا رخ داد' + ) + throw error + } + }) + .catch((err) => { + throw err + }) + }) + .catch((err) => { + throw err + }) + } else { + const error = new myError( + 'user not found', + 400, + 5, + 'کاربر پیدا نشد.', + 'خطا رخ داد' + ) + throw error + } + }) + .catch((err) => { + throw err + }) + }) + .then(() => { + return resObj + }) + .catch((err) => { + throw ("error in with Transaction"+ ":" + err) + }) + .finally(() => { + session.endSession() + }) +} + diff --git a/server/api/walletApi/tron.js b/server/api/walletApi/tron.js new file mode 100755 index 0000000..63263f5 --- /dev/null +++ b/server/api/walletApi/tron.js @@ -0,0 +1,109 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.TRONTransferFrom = exports.validateByTXId = void 0; +var tronWeb = require("tronweb"); +// export function TRONTransferTo(userId, systemAccount, userAccount, privateKey, amount){ +// User.findOne({ _id : userId }) +// .then((user) => { +// if(user && user._id.toString() === userId.toString()){ +// const HttpProvider = tronWeb.providers.HttpProvider; +// const fullNode = new HttpProvider("https://api.shasta.trongrid.io"); +// const solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); +// const eventServer = new HttpProvider("https://api.shasta.trongrid.io"); +// const tw = new tronWeb(fullNode,solidityNode,eventServer,privateKey); +// const am = amount * 1000000 +// tw.trx.getAccount(userAccount.toString()).then((usrAcc) =>{ +// if(usrAcc){ +// tw.trx.sendTransaction(systemAccount, am) +// }else{ +// const error = "user Tron Account not fount" +// console.log("Error in TRONTransferTo : ", error) +// } +// }) +// .catch((err) => console.log(err)) +// }else{ +// const error = 'user not fount' +// console.log('Error in TRONTransferTo : ', error) +// } +// }) +// .catch((err) => console.log('Error in TRONTransferTo : ', err)) +// } +function validateByTXId(hash) { + return __awaiter(this, void 0, void 0, function () { + var systemPrivateKey, HttpProvider, fullNode, solidityNode, eventServer, TronWeb; + return __generator(this, function (_a) { + systemPrivateKey = '4a8f251556d19ab6625c0cc012a3c534bf978e6a099d0bb8f42d6539579a10c5'; + HttpProvider = tronWeb.providers.HttpProvider; + fullNode = new HttpProvider("https://api.shasta.trongrid.io"); + solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); + eventServer = new HttpProvider("https://api.shasta.trongrid.io"); + TronWeb = new tronWeb(fullNode, solidityNode, eventServer, systemPrivateKey); + console.log("here : ", TronWeb); + TronWeb.trx.getTransaction(hash.toString()) + .then(function (transaction) { + return transaction; + })["catch"](function (err) { throw (err); }); + return [2 /*return*/]; + }); + }); +} +exports.validateByTXId = validateByTXId; +function TRONTransferFrom(destAccount, am) { + return __awaiter(this, void 0, void 0, function () { + var systemPrivateKey, amount, HttpProvider, fullNode, solidityNode, eventServer, TronWeb; + return __generator(this, function (_a) { + systemPrivateKey = '4a8f251556d19ab6625c0cc012a3c534bf978e6a099d0bb8f42d6539579a10c5'; + amount = am * 1000000; + HttpProvider = tronWeb.providers.HttpProvider; + fullNode = new HttpProvider("https://api.shasta.trongrid.io"); + solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); + eventServer = new HttpProvider("https://api.shasta.trongrid.io"); + TronWeb = new tronWeb(fullNode, solidityNode, eventServer, systemPrivateKey); + TronWeb.trx.sendTransaction(destAccount, amount) + .then(function (transaction) { + return transaction; + })["catch"](function (err) { + console.log("Error : ", err); + throw (err); + }); + return [2 /*return*/]; + }); + }); +} +exports.TRONTransferFrom = TRONTransferFrom; diff --git a/server/api/walletApi/tron.ts b/server/api/walletApi/tron.ts new file mode 100755 index 0000000..c619c36 --- /dev/null +++ b/server/api/walletApi/tron.ts @@ -0,0 +1,80 @@ +import * as tronWeb from 'tronweb' +// import { Currencies } from '../db/currencies'; +// import { User } from '../db/user' +import * as _ from 'lodash' + +// export function TRONTransferTo(userId, systemAccount, userAccount, privateKey, amount){ + +// User.findOne({ _id : userId }) +// .then((user) => { + +// if(user && user._id.toString() === userId.toString()){ +// const HttpProvider = tronWeb.providers.HttpProvider; +// const fullNode = new HttpProvider("https://api.shasta.trongrid.io"); +// const solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); +// const eventServer = new HttpProvider("https://api.shasta.trongrid.io"); +// const tw = new tronWeb(fullNode,solidityNode,eventServer,privateKey); +// const am = amount * 1000000 +// tw.trx.getAccount(userAccount.toString()).then((usrAcc) =>{ +// if(usrAcc){ +// tw.trx.sendTransaction(systemAccount, am) + +// }else{ +// const error = "user Tron Account not fount" +// console.log("Error in TRONTransferTo : ", error) +// } + +// }) +// .catch((err) => console.log(err)) + + +// }else{ +// const error = 'user not fount' +// console.log('Error in TRONTransferTo : ', error) +// } + +// }) +// .catch((err) => console.log('Error in TRONTransferTo : ', err)) + +// } + +export async function validateByTXId(hash){ + + const systemPrivateKey = '4a8f251556d19ab6625c0cc012a3c534bf978e6a099d0bb8f42d6539579a10c5' + + const HttpProvider = tronWeb.providers.HttpProvider; + const fullNode = new HttpProvider("https://api.shasta.trongrid.io"); + const solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); + const eventServer = new HttpProvider("https://api.shasta.trongrid.io"); + const TronWeb = new tronWeb(fullNode,solidityNode,eventServer,systemPrivateKey); + console.log("here : ", TronWeb) + TronWeb.trx.getTransaction(hash.toString()) + .then((transaction) => { + return transaction + }) + .catch((err) => {throw(err)}) + +} + + +export async function TRONTransferFrom(destAccount, am){ + const systemPrivateKey = '4a8f251556d19ab6625c0cc012a3c534bf978e6a099d0bb8f42d6539579a10c5' + const amount = am * 1000000 + + + const HttpProvider = tronWeb.providers.HttpProvider; + const fullNode = new HttpProvider("https://api.shasta.trongrid.io"); + const solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); + const eventServer = new HttpProvider("https://api.shasta.trongrid.io"); + const TronWeb = new tronWeb(fullNode,solidityNode,eventServer,systemPrivateKey); + TronWeb.trx.sendTransaction(destAccount, amount) + .then((transaction) => { + + return transaction + + }) + .catch((err) => { + console.log("Error : ", err) + throw(err) + }) +} \ No newline at end of file diff --git a/server/combined.log b/server/combined.log new file mode 100755 index 0000000..a99316d --- /dev/null +++ b/server/combined.log @@ -0,0 +1,103725 @@ +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 90452253, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T09:18:52.485Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 101142998, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T12:17:03.510Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 102100189, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T12:33:00.640Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 102203363, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T12:34:43.788Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 112552715, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T15:27:12.830Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 113220334, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T15:38:20.860Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 123741903, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-30T07:12:36.941Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 124005934, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-30T07:17:00.873Z' } +{ message: '403 - undefined', + level: 'warn', + timestamp: '2020-11-30T11:46:10.348Z' } +{ message: + '::1 "POST /wallet/getEtheriumNonce HTTP/1.1" 403 36 53.536 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:46:10.388Z' } +{ message: + '::1 "GET /wallet/getEtheriumNonce?etheriumAccountAddress=0xC1BC3cB61722c959030aF512883F2E884baF5702 HTTP/1.1" 404 162 12.006 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:46:37.572Z' } +{ message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-30T11:46:54.095Z' } +{ message: + '::1 "GET /wallet/getNonce?etheriumAccountAddress=0xC1BC3cB61722c959030aF512883F2E884baF5702 HTTP/1.1" 401 186 4.929 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:46:54.098Z' } +{ message: + '::1 "POST /auth/login HTTP/1.1" 200 130 132.587 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:47:00.823Z' } +{ level: 'warn', timestamp: '2020-11-30T11:47:04.307Z' } +{ message: + 'Error: Provided address "undefined" is invalid, the capitalization checksum test failed, or its an indrect IBAN address which can\'t be converted.\n at Method.inputAddressFormatter (/home/elliot/Desktop/exchange/server/node_modules/web3-core-helpers/lib/formatters.js:398:11)\n at /home/elliot/Desktop/exchange/server/node_modules/web3-core-method/lib/index.js:129:38\n at Array.map ()\n at Method.formatInput (/home/elliot/Desktop/exchange/server/node_modules/web3-core-method/lib/index.js:127:32)\n at Method.toPayload (/home/elliot/Desktop/exchange/server/node_modules/web3-core-method/lib/index.js:160:23)\n at Eth.send [as getTransactionCount] (/home/elliot/Desktop/exchange/server/node_modules/web3-core-method/lib/index.js:498:61)\n at Object.exports.getEtheriumNonce (/home/elliot/Desktop/exchange/server/api/walletApi/etheriuem.js:70:21)\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:87:20\n at Object. (/home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:47:42)\n at step (/home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:33:23)\n at Object.next (/home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:14:53)\n at /home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:8:71\n at new Promise ()\n at __awaiter (/home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:4:12)\n at /home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:41:47\n at Layer.handle [as handle_request] (/home/elliot/Desktop/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n at next (/home/elliot/Desktop/exchange/server/node_modules/express/lib/router/route.js:137:13)\n at exports.validate (/home/elliot/Desktop/exchange/server/middlewares/validation.js:1866:9)\n at Layer.handle [as handle_request] (/home/elliot/Desktop/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n at next (/home/elliot/Desktop/exchange/server/node_modules/express/lib/router/route.js:137:13)\n at middleware (/home/elliot/Desktop/exchange/server/node_modules/express-validator/src/middlewares/check.js:16:13)\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-11-30T11:47:04.308Z' } +{ message: + '::1 "GET /wallet/getNonce?etheriumAccountAddress=0xC1BC3cB61722c959030aF512883F2E884baF5702 HTTP/1.1" 500 192 13.587 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:47:04.313Z' } +{ message: + '::1 "GET /wallet/getEtheriumNonce?etheriumAccountAddress=0xC1BC3cB61722c959030aF512883F2E884baF5702 HTTP/1.1" 200 88 38.456 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', +<<<<<<< HEAD + timestamp: '2020-11-25T08:01:48.330Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 18.012 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:53:45.713Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 200 39 15.765 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:53:45.717Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 2.947 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:53:46.871Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 10.614 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:53:46.873Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 1.776 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:53:46.890Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-28T05:53:51.498Z' +} +{ + message: '::ffff:127.0.0.1 "GET /tickets/getTickets HTTP/1.1" 401 186 7.490 "http://localhost:3000/tickets" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:53:51.502Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 3.878 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:54:00.094Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.852 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:54:04.459Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.640 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:54:04.472Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.154 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:54:04.477Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 8.247 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:54:04.570Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 6.104 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:54:04.571Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 9.378 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:54:09.177Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 12.416 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T05:54:09.182Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 15.707 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:03:45.719Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 8.215 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:03:45.721Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 13.385 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:03:45.722Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 12.580 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:03:45.818Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 12.354 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:03:45.820Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 6.445 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:04:15.772Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.785 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:04:15.783Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 6.591 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:04:15.789Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 9.700 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:04:15.886Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 9.559 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:04:15.902Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 13.326 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:05:53.315Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.071 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:05:53.327Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 12.562 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:05:53.338Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 12.911 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:05:53.427Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 14.957 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:05:53.430Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 15.203 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:08:56.135Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 12.840 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:08:56.139Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.737 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:08:56.143Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 41.732 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:08:56.286Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 46.943 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:08:56.290Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 16.214 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:09:29.282Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.110 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:09:29.291Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 12.614 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:09:29.293Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 32.254 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:09:29.424Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 200 320 37.145 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:09:29.429Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 6.258 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:09:29.696Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 13.327 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:11:30.685Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 10.171 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:11:30.695Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.740 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:11:30.702Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 15.276 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:11:30.802Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 200 320 17.333 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:11:30.805Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 5.148 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:11:31.158Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 5.307 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:39.432Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.852 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:39.448Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.529 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:39.457Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 28.610 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:39.601Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 29.331 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:39.602Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 6.556 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:39.730Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.777 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:42.578Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.336 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:42.588Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.137 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:42.592Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 9.741 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:42.706Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 13.996 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:42.714Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.014 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:42.848Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.827 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:58.626Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.218 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:58.634Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.164 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:58.639Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 13.972 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:58.760Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 15.491 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:58.764Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.443 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:13:58.871Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.600 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:05.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 17.072 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:05.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 323 10.225 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:07.490Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.789 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:17.123Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.436 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:17.133Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.447 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:17.138Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 26.609 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:17.254Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 27.951 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:17.262Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.312 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:17.368Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.350 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:55.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 5.586 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:55.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 6.505 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:57.231Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 6.043 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:14:58.828Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.667 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:15:03.882Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.107 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:15:03.893Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 6.160 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:15:03.896Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 11.438 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:15:03.999Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 11.329 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:15:04.003Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 6.981 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:15:04.124Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.153 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:18:50.044Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.998 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:18:50.058Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 7.962 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:18:50.060Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 24.795 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:18:50.172Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 16.138 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:18:50.180Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 2.946 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:18:50.255Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.308 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:18:58.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.226 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:18:58.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.517 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:19:00.023Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.251 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:19:30.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 323 7.496 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:19:30.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 6.618 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:19:31.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 323 6.301 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:19:33.211Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.960 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:19:34.732Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.416 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:19:35.797Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 323 9.128 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:19:35.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.651 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:19:37.027Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.549 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:20:04.806Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.498 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:20:04.815Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 2.602 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:20:04.819Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 18.972 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:20:04.933Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 20.389 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:20:04.942Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.439 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:20:05.052Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.418 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:43.364Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.479 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:43.373Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.515 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:43.378Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 11.102 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:43.483Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 11.437 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:43.484Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.141 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:43.617Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.657 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:51.011Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.970 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:51.023Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.122 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:51.027Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 5.617 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:51.123Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 10.650 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:51.138Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 5.019 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:21:51.235Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.458 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:16.829Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.929 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:16.841Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.425 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:16.845Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 18.229 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:16.952Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 14.097 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:16.960Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.368 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:17.073Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.406 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:35.308Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 4.914 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:35.315Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.020 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:35.321Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 18.952 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:35.432Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 32.310 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:35.442Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.057 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:22:35.559Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.646 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:02.258Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.510 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:02.267Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 2.376 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:02.270Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 12.740 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:02.378Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 20.460 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:02.383Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.639 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:02.500Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.540 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:46.699Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.369 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:46.710Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.416 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:46.711Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 17.549 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:46.821Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 17.730 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:46.836Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.553 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:23:46.954Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.473 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:24:50.701Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.560 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:24:50.710Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 6.817 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:24:50.718Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 20.256 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:24:50.829Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 23.234 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:24:50.835Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.141 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:24:50.939Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 13.816 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:12.608Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.173 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:12.611Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.677 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:12.615Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 12.700 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:12.754Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 200 320 45.549 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:12.760Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.377 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:12.864Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 4.402 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:53.134Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.106 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:53.145Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 8.090 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:53.147Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 13.123 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:53.249Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 13.468 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:53.274Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.040 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:25:53.380Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.769 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:04.851Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.591 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:04.864Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 6.281 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:04.865Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 7.135 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:04.965Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 12.405 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:04.969Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.354 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:05.092Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.665 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:28.583Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.474 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:28.594Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.203 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:28.606Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 19.664 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:28.727Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 22.831 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:28.730Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.245 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:28.829Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.645 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:33.955Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.273 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:33.967Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.865 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:33.971Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 21.831 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:34.092Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 10.182 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:34.093Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.358 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:26:34.190Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.602 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:02.470Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.880 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:02.480Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.985 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:02.482Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 22.724 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:02.601Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 24.537 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:02.607Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.418 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:02.722Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.620 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:33.102Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.341 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:33.112Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.702 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:33.117Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 10.040 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:33.234Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 12.568 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:33.236Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.797 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:33.343Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.583 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:50.736Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.313 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:50.761Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 8.639 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:50.767Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 8.511 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:50.868Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 8.980 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:50.869Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.100 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:28:50.991Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.588 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:17.239Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.268 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:17.248Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.741 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:17.256Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 32.752 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:17.383Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 24.034 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:17.387Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.097 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:17.500Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.580 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:27.547Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.670 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:27.556Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.572 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:27.557Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 5.981 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:27.655Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 8.873 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:27.664Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.411 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:27.790Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.520 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:48.100Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.365 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:48.112Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.658 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:48.113Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 10.351 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:48.233Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 18.882 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:48.242Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.390 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:29:48.338Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 5.167 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:30:05.393Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.594 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:30:05.403Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.106 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:30:05.409Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 25.277 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:30:05.522Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 19.018 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:30:05.539Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 7.120 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:30:05.653Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.416 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:47:08.439Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 323 19.647 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:47:08.461Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 18.523 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:48:19.836Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 13.911 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:48:19.838Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 13.362 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:48:19.838Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 16.733 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:48:19.942Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 21.008 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:48:19.955Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.778 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:48:20.082Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.568 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:48:22.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 17.854 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:48:22.625Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 15.822 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:24.154Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.924 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:24.157Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 14.117 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:24.158Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 28.982 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:24.316Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 200 320 43.754 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:24.318Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.830 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:24.404Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.723 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:26.297Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 15.675 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:26.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 8.261 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:28.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 12.139 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:30.166Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.461 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:31.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 5.389 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:49:31.592Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 17.154 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:51:58.514Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 16.094 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:51:58.515Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 12.189 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:51:58.516Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 22.827 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:51:58.627Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 26.357 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:51:58.640Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.094 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:51:58.751Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.406 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:52:00.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 16.749 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:52:00.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.568 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:52:02.122Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 16.022 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:57:18.657Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 12.441 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:57:18.658Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 12.848 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:57:18.659Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 16.843 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:57:18.795Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 14.049 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:57:18.805Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.001 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:57:18.901Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.406 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:57:21.234Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 22.296 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:57:21.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.214 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:57:22.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 6.285 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:57:24.146Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 8.775 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:57:25.556Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 2.709 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:59:44.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 24.412 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:59:44.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.781 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:59:46.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 8.197 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T06:59:48.108Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 15.749 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:00:59.013Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 12.767 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:00:59.023Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 13.737 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:00:59.024Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 9.051 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:00:59.112Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 13.812 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:00:59.136Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.252 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:00:59.250Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.556 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:01:01.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 18.676 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:01:01.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 13.738 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:01:02.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.352 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:01:03.841Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 16.714 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:02:48.019Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 12.948 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:02:48.024Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.260 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:02:48.029Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 27.762 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:02:48.145Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 33.623 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:02:48.148Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.708 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:02:48.254Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.428 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:02:50.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 14.335 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:02:50.687Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.278 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:03:01.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.507 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T07:03:01.654Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 7.042 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:33:41.876Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.857 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:33:41.886Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 10.871 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:33:41.888Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 8.619 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:33:41.970Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 7.723 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:33:41.971Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.265 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:33:42.078Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.667 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:34:15.425Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.457 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:34:15.434Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 2.861 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:34:15.438Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 9.042 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:34:15.529Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 200 320 9.828 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:34:15.530Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.453 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:34:15.632Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.343 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:35:17.245Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.279 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:35:17.283Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 28.644 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:35:17.289Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 10.453 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:35:17.380Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 12.711 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:35:17.388Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.113 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:35:17.478Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.727 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:42:59.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 25.333 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:42:59.170Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 10.126 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:43:00.617Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.321 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:43:04.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 8.104 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:43:04.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 12.327 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:43:06.318Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 8.009 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:43:07.404Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 4.890 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:04.957Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.593 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:04.973Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 7.499 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:04.975Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 26.154 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:05.110Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 33.234 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:05.111Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.825 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:05.215Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.750 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:42.899Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.878 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:42.909Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.774 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:42.915Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 9.016 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:43.011Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 18.228 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:43.031Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.936 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:44:43.133Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 15.585 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:40.512Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 9.304 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:40.515Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 14.555 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:40.516Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 54.575 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:40.655Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 57.801 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:40.658Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.080 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:40.761Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.410 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:44.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 16.553 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:44.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.579 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:46.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.216 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:48.678Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.273 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:50.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 8.381 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:50.354Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.261 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:51.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.495 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:48:53.278Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 14.219 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:51:43.298Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 10.361 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:51:43.308Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 10.850 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:51:43.309Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 13.468 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:51:43.411Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 15.136 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:51:43.413Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.204 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:51:43.532Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.425 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:52:00.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 22.431 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:52:00.273Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.800 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:52:43.565Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.793 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:52:43.574Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 2.951 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:52:43.578Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 9.821 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:52:43.711Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 14.349 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:52:43.717Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.381 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:52:43.839Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.252 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:52:49.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 9.338 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:52:49.396Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.303 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:53:32.042Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.537 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:53:32.055Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 10.506 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:53:34.519Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.361 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:53:37.154Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 8.054 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:53:37.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 43 10.541 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:53:39.145Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.850 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:02.772Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.521 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:02.783Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.583 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:02.788Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 12.469 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:02.894Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 11.394 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:02.895Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.634 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:03.004Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.299 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:05.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 10.462 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:05.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.373 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:07.628Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 7.597 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:09.273Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.329 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:10.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.917 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:10.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 8.171 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:13.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 43 8.008 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:54:15.284Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.121 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:55:10.435Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 8.607 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:55:10.442Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.942 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:55:10.448Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 13.430 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:55:10.577Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 11.619 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:55:10.580Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.857 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:55:10.797Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.248 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:55:13.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 10.486 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:55:13.579Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 10.099 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:55:17.990Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.319 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:55:22.520Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 43 7.962 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:55:22.536Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 21.691 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:57:09.733Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 8.953 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:57:09.745Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 12.266 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:57:09.746Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 7.624 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:57:09.849Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 16.084 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:57:09.870Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 5.642 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:57:10.100Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.420 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:57:11.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 18.192 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:57:11.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 12.580 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:57:13.436Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 14.748 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T08:57:14.851Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 100.430 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T09:02:21.505Z' +} +{ + message: '::1 "GET /user/acceptOffer?offerId=6c1a1447-9941-4518-afbb-0693f63c1ff9 HTTP/1.1" 200 116 44.246 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T09:02:55.414Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.918 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:00.172Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 8.542 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:00.188Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.752 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:00.193Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 21.551 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:00.311Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 200 602 9.717 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:00.385Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.347 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:00.641Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.244 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:06.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 7.625 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:06.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.943 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:10.611Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.268 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:12.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 10.399 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:12.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 8.669 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:14.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.393 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:15.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 7.504 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:03:17.496Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.950 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:19.396Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 10.858 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:19.411Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.753 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:19.421Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 11.290 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:19.612Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 15.931 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:19.623Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 5.428 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:19.939Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.241 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:24.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.616 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:24.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 8.147 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:26.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 11.060 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:27.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.257 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:28.616Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.242 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:30.558Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 6.507 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:30.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.010 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T09:04:32.027Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.881 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:17:27.578Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 8.762 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:17:27.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 6.936 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:17:29.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.822 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:17:30.684Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.280Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.282Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.862 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.368Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.375Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 74.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 66.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 70.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 69.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 68.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.469Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 68.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 73.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.520Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.578Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.652Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.700Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.816 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.973 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.807Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.990 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.970 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.043 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:15.871Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.612Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.613Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.624Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.632Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.634Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.637Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.674Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.081 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.790Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 65.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.853Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 66.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 64.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 49.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.863Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 60.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.900Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.950 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.922Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.705 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.480 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.505 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:21.997Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.009Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.070Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.070Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.120Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.014 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:22.153Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.397 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:31.563Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.322 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:31.575Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.736 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:31.576Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 16.447 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:31.663Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 17.805 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:31.677Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 2.967 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:31.805Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.554Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.557Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.562Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.569Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.198 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.572Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.595Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.602Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.613Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.823 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.633Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.283 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.692Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.730Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.733Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.081 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.778 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.770Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.771Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.815 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.771Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.772Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.900Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.900Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.901Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.920Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.658 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.961Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.961Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.961Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:33.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:34.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:34.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:27:34.032Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.549Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.550Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.558Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.911 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 55.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.616 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 75.643 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 74.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 65.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 65.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 69.913 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 57.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.786Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.234 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.002 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.589 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.904Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.950Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.293 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.600 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.988Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.988Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.856 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:38.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:39.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.353 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:39.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:39.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.798 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:39.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:39.054Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:39.054Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:39.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:39.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:39.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:39.112Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.484 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.002 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.692Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 56.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.884 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.768Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 68.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.850Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 67.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.853Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 58.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.859Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 66.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 74.769 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 69.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 87.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 86.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 58.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 67.781 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 57.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 58.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.865 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:47.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 69.488 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 66.412 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 65.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 112.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 111.587 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.135Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 110.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 59.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 57.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 62.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.202Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 55.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.202Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.426 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.242Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.250Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.448 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.805 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.664 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.346Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:48.347Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.220Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.221Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.233Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.239Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.240Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.416 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.043 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.318Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.344Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.954 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.404Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.367 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.445Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.459Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.461Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.509Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.603 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.963 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.966 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.710Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:28:53.719Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.123Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.172Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.223Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.312Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.589 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.312Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.313Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.806 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.385Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.833 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.432Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.616 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.462Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.470Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:29:54.601Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.802Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.804Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.809Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.810Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.863Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.920Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.505 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.922Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 56.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.848 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:09.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.626 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.918 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.013Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.661 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.763 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.293 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.124Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.181Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:10.323Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.232Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.232Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.429 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.331Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.334Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.360Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.402Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.780 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.426 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 59.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.477Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 57.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 57.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 49.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 61.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 55.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 46.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 49.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.658Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.700Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.752Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:31:37.819Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 2.741 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:18.241Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.301 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:18.249Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 2.129 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:18.252Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 10.148 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:18.358Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 11.800 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:18.361Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 2.804 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:18.558Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.878 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.161Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 49.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.235Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.014 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.256Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.616 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.759 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.337Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.347Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.356Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.560 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.477Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.488 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:22.494Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.147 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:40.657Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.904 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:40.667Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 2.500 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:40.676Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 7.902 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:40.765Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 304 - 21.141 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:40.781Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 2.652 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:40.897Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.196Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.198Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.201Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 2.426 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.206Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.209Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.210Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.210Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.211Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.211Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 5.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.218Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.226Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.418Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.420Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.421Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.425Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.428Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.198 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.432Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.435Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.437Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.967 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.442Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.445Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.448Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.449Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.449Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.451Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.453Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.455Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.456Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.457Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.457Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.458Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.459Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.460Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.461Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.461Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.499Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.536Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.543Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.544Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.549Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.551Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.553Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.558Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.729 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.560Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.571Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.576Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.581Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.038 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.587Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.592Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.597Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.606Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.609Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.614Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.619Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.623Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.699 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.625Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.628Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.630Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.738 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.787 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.697Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.721Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.730Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:52.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:53.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:53.005Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:53.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:53.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.658 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:32:53.038Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.792Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.600 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.734 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:09.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.610 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.023Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.937 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.058Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.073Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.674 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.553 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.106Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.486 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.109Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.120Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.850 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.522 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.202Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.419 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.227Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.259Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.259Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.693 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.416 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.380Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.799 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.380 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.432Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.443Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.444Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.532Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.008 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.560Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.946 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.428 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.632Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.669Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.973 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.696Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.882Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.882Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.900Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.787 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.929Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.980Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:10.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.017Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.022Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.062Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.079Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.335 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.394 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.693 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.731 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.260Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.260Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.904 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.318Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.057 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.347Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.466 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.673 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.432Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.438Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.499Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.553Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.507 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.919 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.565 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.787 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.613Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.587 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.448 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.818 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.766 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.828Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.416 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.774 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.874 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.468 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.933Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.945Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.945Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.988Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.615 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:11.999Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.049Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.102Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.614 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.845 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.160Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.696 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.170Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.995 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.729 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.081 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.031 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.231Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.890 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.234Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.615 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.319Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.919 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.534 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.337Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.388Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.389Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.769 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.432Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.565 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.443Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.444Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.444Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.547Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.549Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.014 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.638Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.726 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.688Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.878 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.741Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.770Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.770Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.600 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.554 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.899Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.426 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.615 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.568 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:12.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.005Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.019Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.042Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.054Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.664 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.073Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.688 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.047 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.112Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.114Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.919 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.249Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.603 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.294Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.313Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.856 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.346Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.368Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.973 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.375Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.967 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.766 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.258 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.545Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.549Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.766 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.949 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.929 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.311 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.653 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.768Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.792Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.830Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.829 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.845Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.863Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.868Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.937Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.582 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:13.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.038 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.025Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.803 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.363 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.707 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.283 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.134Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.738 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.225Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.582 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.595 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.700 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.270Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.294Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.297Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.344Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.025 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.537 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.404Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.444Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.469Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.014 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.499Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.809 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.918 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.571Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.015 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.578Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.535 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.997 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.632Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.633Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.634Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.700Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.959 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.700Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.700Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.340 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.751Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.758Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.763Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.790Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.477 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.878 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.353 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.922Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.925Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:14.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.033Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.799 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.037Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.037Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.827 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.102Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.394 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.225Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.390 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.225Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.225Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.350 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.738 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.319Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.400Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.400Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.423Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.427Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.015 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.512Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.512Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.552Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.507 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.522 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.002 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.594 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.651Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.391 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.393 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.721Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.890 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.038 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.752Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.633 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.769Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.801Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.807Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.391 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.736 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.863Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.913Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.913Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.924 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:15.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.049Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.553 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.756 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.170Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.537 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.364Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.411Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.959 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.705 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.526Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.047 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.553Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.505 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.576Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.597Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.638Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.371 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.818 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.805 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.746Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.790Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.025 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.830Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.881Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.900Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.925Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.930Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.919 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.963 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:16.996Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.033Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.046Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.046Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.082Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.486 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.170Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.700 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.823 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.211Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.227Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.080 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.833 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.313Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.560 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.326Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.753 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.348Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.375Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.400Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.400Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.423Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.473Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.848 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.512Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.525Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.913 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.576Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.753 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.637Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.669Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.669Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.082 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.505 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.790Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.881 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.830Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.707 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.845Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.845Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.882Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.682 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.350 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.937Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.949Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.949Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.763 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.949Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:17.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.045Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.046Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.048Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.055Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.055Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.056Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.102Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.736 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.197Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 46.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.223Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.250Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.256Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.259Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.318Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.331Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.448 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.080 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.997 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.388Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.443Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.469Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.469Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.500Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.502Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.945 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.522Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.541Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.688 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.380 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.734Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.768Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.771Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.828Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.882Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.626 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.913Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.933Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.816 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:18.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.924 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.025Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.070Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.079Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.785 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.963 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.278Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.294Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.036 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.328Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.336Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.338Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.356Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.356Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.375Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.781 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.404Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.918 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.600 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.473Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.505Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.531Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.541Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.705 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.543Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.552Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.628 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.571Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.579Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.082 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.709Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.664 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.519 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.798Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.799Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.800Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.901Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.905Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.464 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.917Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.827 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.930Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.887 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.980Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:19.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.009Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.046Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.057Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.559 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.070Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.978 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.102Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.113Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.674 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.211Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.231Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.960 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.253Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.260Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.268Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.658 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.348Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.846 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.278 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.079 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.410Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.419Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.628 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.444Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.445Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.462Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.473Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.713 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.531Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.547Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.707 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.658Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.658Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.770Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.771Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.772Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.850 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.740 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.922Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.925Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.057 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:20.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.705 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.054Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.604 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.753 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.887 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.149Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.181Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.234Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.653 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.243Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.787 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.364Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.386Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.480 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.416Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.259 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.522Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.531Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.532Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.541Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.967 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.658Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.696 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.721Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.015 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.784Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.945 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.610 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.961Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.008 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:21.996Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.046Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.104Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.105Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.169Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.642 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.268Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.818 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.381Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.456Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.459Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.380 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.512Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.637Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.661 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.595 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 49.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 63.967 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 60.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 65.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 56.884 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.904Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.904Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.925Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.904 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:22.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.539 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.371 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.829 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.120Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.146Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.169Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.172Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.191Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.229Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.243Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.256Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.448 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.845 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.903 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.368Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.036 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.945 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.553Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.560Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.610Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.314 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.669Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.723Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.723Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.380 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.882Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:23.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.391 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.022Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.047Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.054Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.210Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.259Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.658 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.734 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.707 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.799 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.995 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.366Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.406Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.705 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.423Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.966 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.505Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.505Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.756 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.781 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.702Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.702Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.702Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.703Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.752Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.628 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.754Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.762Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.826Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.827Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.830Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.831Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.731 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.869 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:24.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.104Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.005 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.104Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.114Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.234 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.154Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.713 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 62.816 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.229Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 65.966 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.235Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.249Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.250Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.643 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.381Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.385Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.412 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.302 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.599 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.437Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.456Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.625 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.541Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.412 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.576Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.597Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.792Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.535 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.800Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.859Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.865Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.917Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.930Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.534 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.625 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.988Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.811 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:25.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.112Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.367 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.161Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.602 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.211Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.522 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.253Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.292Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.294Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 59.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 58.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.311 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.459Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.462Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.015 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.480 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.429 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.632Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.637Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.688Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.692Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.488 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.829Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.830Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.901Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.394 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:26.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.003Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.005Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.017Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 78.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 71.630 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.065Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 63.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.070Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.070Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 49.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.161Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 55.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 67.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.240Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.610 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.334Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.336Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.653 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.337Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.848 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.354Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.428 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.038 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.402Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.419Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.803 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.530Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 63.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.620 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.904 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.507 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.613Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.634Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 71.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 71.017 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.770Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 72.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 75.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 67.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 65.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 82.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.881 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.950Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.950Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.950Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:27.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.013Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.106Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 75.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 72.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 70.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 79.503 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.444 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.191Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.815 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.202Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.212Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.258 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.869 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.331Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.331Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.444Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.473Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.620 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 59.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 58.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 58.903 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.517 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.047 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.681Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.710Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.721Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.890 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.784Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.786Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.860Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.868Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.901Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.919Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.505 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.426 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.996Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:28.997Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.590 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.444 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.628 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.160Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.731 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.963 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.453 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.299Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.312Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.005 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.334Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.375Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.693 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.406Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.688 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.441Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.520Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 66.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.734 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.665Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.681Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.740Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.757Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.845Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.845Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.853Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.920Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 69.785 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 56.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 65.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 64.508 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:29.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 57.022 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 49.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.074Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 61.559 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 58.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.970 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.172Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.172Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.173Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.205Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.539 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.553 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.406Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.461Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.471Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.530Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.530Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.929 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.559 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.610 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.661 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.780 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.658Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.709Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.709Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.603 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.710Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.769Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.479 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.770Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.770Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.840Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.917Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.919Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.980Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.980Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.416 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:30.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.037Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.037Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.079 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.041Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.160Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.160Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.243Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.253Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.554 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.256Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.292Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.319Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.354Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.486 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.057 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.536 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.399Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.950 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.432Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.963 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.445Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.489Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.505Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.674 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.553Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.833 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.428 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.431 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.730Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.778 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.744Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.752Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.790Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.904Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.905Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.922Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.816 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.477 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.979Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:31.999Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.937 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.022Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.599 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.047Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.105Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.114Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.134Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.603 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.160Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.522 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.160Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.169Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.548 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.967 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.210Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.231Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.763 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.873 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.346Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.347Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.360Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.366Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.587 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.386Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.404Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.436Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.459Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.469Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.469Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.589 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.521Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.534Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.560 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.207 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.613Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.025 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.911 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.519 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.594 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.786Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.852Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.867Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.899Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.933Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.979Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.988Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:32.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.041Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.074Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.074Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.074Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.091Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.104Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.353 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.778 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.787 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.234Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.827 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.850 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.297Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.360Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.366Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.626 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.392Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.198 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.824 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.419Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.469Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.476Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.477Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.522Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:33.522Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.009Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.011Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.016Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.018Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.022Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.024Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.027Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.031Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.039Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.042Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.043Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.046Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.050Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.051Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.052Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.054Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.055Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.057Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.059Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.696 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.062Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.065Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.067Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.069Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.071Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.072Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.073Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.074Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.075Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.077Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.078Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.079Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.079Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.080Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.081Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.083Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.085Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.086Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.087Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.088Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.089Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.092Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.094Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.094Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.095Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.100Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.102Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.106Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.111Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.112Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.117Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.121Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.207 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.129Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.132Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.139Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.146Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.147Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.151Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.159Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.176Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.178Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.182Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.188Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 49.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.798 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.193Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.194Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.198Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.205Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.205Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.208Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.212Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.212Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.217Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.225Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.227Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.233Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.234Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.234Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.833 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.238Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.239Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.242Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.246Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.252Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.258Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.262Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.263Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.264Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.265Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.265Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.266Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.267Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.268Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.268Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.269Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.270Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.271Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.273Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.274Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.275Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.276Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.276Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.277Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.278Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.279Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.280Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.280Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.281Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.282Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.283Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.284Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.284Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.285Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.290Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.292Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.295Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.301Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.305Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.308Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.312Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.313Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.318Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.323Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.324Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.332Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.334Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.336Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.337Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.339Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.341Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.344Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.348Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.589 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.479 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.081 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.385Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.394Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.401Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.404Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.406Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.407Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.410Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.411Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.417Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.731 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.422Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.425Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.428Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.431Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.432Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.433Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.435Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.436Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.438Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.440Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.444Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.457Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.459Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.466Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.470Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.473Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.476Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.477Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.484 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.477Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.477Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.483Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.485Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.486Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.487Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.488Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.489Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.492Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.494Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.508Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.512Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.514Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.517Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.522Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.530Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.532Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.535Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.541Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.544Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.546Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.549Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.551Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.552Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.554Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.555Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.556Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.565Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.574Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.576Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.585Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.589Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.606Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.607Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.612Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.614Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.619Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.621Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.623Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.624Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.628Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.630Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.634Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.907 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.642Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.644Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.653Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.656Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.658Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.661Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.664Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.669Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.589 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.671Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.673Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.673Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.675Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.679Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.689Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.830 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.692Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.699Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.702Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.705Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.709Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.714Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.717Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.723Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.725Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.728Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.738Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.739Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.741Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.628 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.752Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.754Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.757Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.764Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.777Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.779Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.582 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.784Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.846 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.827 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.791Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.798Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.801Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.806Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.808Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.813Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.816Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.836Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.843Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.844Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.845Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.589 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.853Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.861Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.863Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.590 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.811 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.876Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.391 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.889Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.894Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.897Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.899Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.902Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.907Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.912Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.932Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.628 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.941Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.945Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.955Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.957Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.959Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.961Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.965Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.080 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.985Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:34.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.003Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.005Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.006Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.028Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.017 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.034Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.036Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.055Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.056Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.643 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.061Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.064Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.065Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.070Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.078Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.087Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.087Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.094Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.107Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.111Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.113Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.120Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.949 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.127Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.129Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.130Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.133Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.135Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.138Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.150Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.155Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.158Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.167Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.175Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.178Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.181Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.189Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.198Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.199Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.201Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.204Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.216Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.221Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.231Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.234Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.240Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.248Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.252Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.260Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.267Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.271Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.276Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.280Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.294Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.306Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.309Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.313Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.319Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.918 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.328Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.330Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.341Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.344Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.348Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.354Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.361Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.381Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.382Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.400Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.401Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.404Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.405Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.407Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.410Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.419Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.658 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.787 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.693 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.437Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.442Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.445Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.455Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.459Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.464Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.465Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.473Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.480Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.495Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.499Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.505Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.510Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.511Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.517Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.520Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.525Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.532Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.546Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.548Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.558Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.559Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.566Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.567Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.568Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.574Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.581Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.591Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.602Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.603Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.707 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.623Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.630Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.631Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.636Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.638Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.646Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.662Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.669Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.673Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.677Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.681Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.371 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.829 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.685Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.686Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.693Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.695Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.697Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.703Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.712Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.715Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.718Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.723Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.736Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.740Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.741Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.741Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.742Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.747Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.750Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.751Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.762Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.763Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.772Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.774Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.778Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.791Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.792Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.800Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.801Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.803Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.805Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.805Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.079 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.811Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.813Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.822Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.826Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.831Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.839Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.846Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.850Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.855Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.857Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.859Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.860Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.865Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.872Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.874Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.876Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.877Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.893Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.900Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.910Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.918Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.946 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.927Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.929Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.933Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.937Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.940Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.944Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.945Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.951Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.954Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.958Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.964Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.970Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.979Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.595 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.981Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.991Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.996Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:35.999Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.001Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.003Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.024Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.785 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.028Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.040Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.045Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.055Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.056Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.060Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.062Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.070Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.072Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.075Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.960 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.085Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.090Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.093Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.105Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.121Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.122Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.371 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.043 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.139Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.146Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.148Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.149Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.168Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.172Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.176Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.186Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.196Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.196Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.201Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.202Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.207Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.213Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.227Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.234Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.247Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.780 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.256Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.256Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.259Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.262Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.296Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.303Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.306Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.656 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.479 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.315Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.320Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.322Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.323Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.341Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.351Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.361Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.370Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.375Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.376Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.377Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.390Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.391Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.395Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.399Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.404Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.419Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.430Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.438Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.444Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.462Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.462Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.468Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.488Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.489Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.493Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.504Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.511Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.520Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.523Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.529Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.543Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.545Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.561Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.567Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.568Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.569Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.658Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.668Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.672Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.681Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.682Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.686Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.688Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.701Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.709Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.716Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.727Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.731Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.741Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.744Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.745Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.752Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.752Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.756Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.761Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.769Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.770Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.774Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.786Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.792Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.796Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.600 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.661 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.810Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.813Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.813Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.814Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.823Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.824Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.825Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.826Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.844Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.848Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.857Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.859Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.862Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.865Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.875Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.884Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.393 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.894Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.899Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.910Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.918Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.924Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.926Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.928Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.930Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.933Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.937Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.548 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.946Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.950Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.958Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.966Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.971Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.973Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.984Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.988Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:36.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.001Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.006Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.008Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.535 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.587 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.025Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.030Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.035Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.038Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.040Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.054Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.057Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.061Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.065Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.072Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.074Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.082Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.084Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.089Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.198 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.091Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.096Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.097Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.101Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.104Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.112Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.121Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.123Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.129Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.138Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.140Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.146Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.148Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.151Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.154Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.165Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.165Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.170Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.172Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.192Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.008 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.661 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.200Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.202Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.205Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.208Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.220Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.221Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.223Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.225Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.227Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.236Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.238Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.245Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.249Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.252Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.259Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.260Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.287Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.317Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.326Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.327Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.336Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.342Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 49.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.346Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.347Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.351Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.352Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.352Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.353Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.353Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.354Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.354Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.374Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.384Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.397Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.400Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.845 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.407Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.412Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.419Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.429Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.445Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.311 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.445Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.448Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.451Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.459Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.459Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.467Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.472Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.481Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.485Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.498Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.501Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.536 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.509Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.510Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.513Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.519Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.005 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.602 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.551Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.557Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.560Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.561Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.565Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.568Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.574Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.578Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.600Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.616Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.618Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.620Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.626Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.629Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.635Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.638Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.278 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.648Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.653Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.734 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.656Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.664Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.666Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.669Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.672Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.677Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.681Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.687Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.699Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.703Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.710Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.426 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.716Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.720Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.723Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.724Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.725Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.728Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.734Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.736Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.738Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.740Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.747Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.756Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.757Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.760Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.770Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.781Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.786Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.788Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.794Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.806Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.753 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.808Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.811Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.812Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.817Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.840Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.843Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.843Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.850Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.855Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.857Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.590 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.893Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.894Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.898Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.899Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.903Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.907Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.917Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.925Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.931Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.937Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.939Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.944Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.947Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.954Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.966Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.968Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.969Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.975Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.887 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.993Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:37.998Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.000Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.001Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.005Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.006Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.008Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.011Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.015Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.021Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.029Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.030Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.031Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.037Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.040Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.048Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.048Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.049Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.061Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.062Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.067Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.069Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.082Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.085Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.096Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.099Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.099Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.115Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.117Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.122Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.139Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.140Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.148Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.154Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.154Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.155Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.159Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.166Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.170Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.173Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.178Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.184Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.185Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.187Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.198Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.205Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.206Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.217Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.223Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.226Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.228Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.238Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.245Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.270Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.277Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.284Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.294Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.297Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.301Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.307Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.315Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.949 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.371 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.324Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.330Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.349Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.361Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.379Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.380Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.381Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.382Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.391Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.397Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.401Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.403Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.404Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.410Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.411Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.433Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.436Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.439Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.911 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.447Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.456Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.458Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.460Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.466Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.474Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.499Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.502Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.515Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.529Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.530Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.545Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.633 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.560Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.507 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.562Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.566Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.575Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.579Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.586Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.592Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.599Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.602Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.605Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.623Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.628Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.629Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.632Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.508 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.638Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.642Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.650Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.651Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.658Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.660Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.681Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.682Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.692Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.697Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.698Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.701Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.702Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.703Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.703Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.704Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.705Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.717Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.719Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.721Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.728Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.741Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.747Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.752Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.777Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.779Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.781Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.797Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.811Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.997 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.815Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.777 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.825Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.828Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.832Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.836Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.837Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.843Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.846Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.850Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.464 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.863Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.865Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.872Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.879Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.719 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.886Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.895Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.898Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.903Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.008 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.913Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.914Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.682 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.989Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.996Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:38.997Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.006Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.007Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.009Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.010Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.013Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.017Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.731 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.620 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.032Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.032Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.042Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.046Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.048Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.049Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.049Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.049Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.055Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.056Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.057Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.061Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.063Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.069Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.071Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.082Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.674 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.084Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.094Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.101Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.107Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.120Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.124Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.126Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.128Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.429 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.132Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.133Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.140Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.141Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.147Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.155Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.158Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.165Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.168Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.173Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.178Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.181Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.181Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.186Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.191Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.194Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.197Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.198Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.202Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.208Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.216Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.219Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.240Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.242Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.243Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.251Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.254Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.256Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.257Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.258Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.259Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.259Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.265Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.267Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.273Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.275Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.283Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.292Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.293Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.309Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.312Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.313Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.315Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.318Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.320Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.324Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.327Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.331Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.338Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.342Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.661 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.356Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 3.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.361Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.367Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.372Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.374Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.380Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.381Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.383Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.385Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.388Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.392Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.402Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.406Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.409Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.413Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.423Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.424Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.432Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.630 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.436Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.441Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.442Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.445Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.447Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.452Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.455Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.459Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.469Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.482Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.485Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.488Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.493Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.500Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.503Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.534Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.540Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.552Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.555Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.557Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.566Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.567Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.670 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.582Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.585Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.591Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.025 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.606Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.608Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.610Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.617Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.633Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.258 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.637Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.639Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.640Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.647Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.651Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.777 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.661Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.665Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.666Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.670Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.686Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.689Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.692Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.697Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.701Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.468 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.719Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.477 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.743Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.744Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.745Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.749Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.754Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.766Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.770Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.903 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.777Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.780Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.793Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.796Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.796Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.797Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.800Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.803Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.807Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.809Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.816Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.821Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.832Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.835Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.843Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.850Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.854Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.857Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.857Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.861Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.864Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.868Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.870Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.434 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.885Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.674 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.895Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.897Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.900Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.904Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.910Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.915Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.920Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.923Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.929Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.933Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.938Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.941Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.949Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 2.787 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.961Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.964Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.968Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.969Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.975Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.979Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.983Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.984Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.990Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:39.992Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.005Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.009Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.508 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.017Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.022Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.035Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.044Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.046Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.048Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.050Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.058Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.064Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.069Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.073Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.077Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.082Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.088Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.092Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.094Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.094Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.094Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.095Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.097Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.101Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.106Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.111Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.120Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.121Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.123Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 2.781 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.133Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.139Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.147Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.777 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.152Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.176Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.179Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.183Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.184Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.185Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.186Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.189Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.191Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.200Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.201Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.207Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.560 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.211Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.212Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.212Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.214Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.217Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.220Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.223Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.234Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.340 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.237Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.241Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.244Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.247Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.015 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.257Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.260Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.350 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.263Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.264Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.287Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.289Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.291Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.293Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.298Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.308Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.774 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.536 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.318Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.343Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.345Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.345Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.346Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.347Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.348Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.355Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.360Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.589 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.371Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.374Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.377Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.379Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.385Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.388Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.398Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.405Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.406Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.409Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.411Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.418Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.699 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.426Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.427Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.428Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.433Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.829 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.450Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.633 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.453Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.468Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.471Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.480Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.482Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.503Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.505Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.506Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.509Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.511Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.520Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.527Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.530Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.532Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.533Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.541Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.543Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.554Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.569Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.574Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.578Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.601Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.605Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.629Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.632Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.635Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.647Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.652Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.058 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.681Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.682Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.682Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.690Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.692Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.693Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.703Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.705Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.709Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.717Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.335 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.725Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.595 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.730Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.732Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.734Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.740Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.747Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.754Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.757Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.763Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.768Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.771Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.560 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.783Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.789Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.798Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.804Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.807Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.967 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.835Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.850Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.851Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.870Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.875Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.877Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 2.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.883Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.892Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.043 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.904Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.920Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 2.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.928Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.932Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.935Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.972Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.973Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.974Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.975Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.980Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.994Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:40.998Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.006Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.009Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.025Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.031Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.033Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.034Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.036Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.040Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.044Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.045Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.049Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.055Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.068Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.070Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.076Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.079Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.534 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.081Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.595 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.092Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.095Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.098Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.102Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.103Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.107Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.110Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.117Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.128Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.130Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.146Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.146Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.154Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.157Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.179Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.183Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.187Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.190Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.699 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.199Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.215Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.217Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.221Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.228Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.237Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.244Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.247Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.252Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.256Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.262Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.263Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.270Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.273Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.294 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.277Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.283Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.287Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.290Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.292Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.294Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.297Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.306Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.307Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.315Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.321Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.323Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.326Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.326Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.329Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.330Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.339Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.345Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.348Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.355Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.358Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.278 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.372Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.374Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.376Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.388Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.390Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.395Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.397Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.402Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.406Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.406Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.409Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.418Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.423Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.423Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.431Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.438Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.441Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.441Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.445Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.447Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.457Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.461Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.464Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.470Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.475Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.478Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.485Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.496Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.499Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.499Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.507Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.509Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.511Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.512Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.516Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.536Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.542Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.546Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.551Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.552Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.553Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.556Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.569Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.573Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.579Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.581Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.584Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.587Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.394 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.603 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.591Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.593Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.597Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.600Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.608Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.611Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.623Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.862 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.631Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.640Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.642Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.649Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.658Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.929 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.663Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.666Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.669Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.673Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.680Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.692Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.693Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.696Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.697Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.697Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.702Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.715Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.717Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.720Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.724Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.732Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.749Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.673 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.755Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.765Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.767Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.774Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.795Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.809Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.819Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.822Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.827Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.834Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.850Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.851Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.854Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.857Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.867Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.464 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.877Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.880Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.881Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.886Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.899Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.902Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.903Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.907Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.916Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.920Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.928Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.937Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.938Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.943Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.956Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.964Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.969Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.972Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.982Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.997Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.997Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.997Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:41.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.614 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.002Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.005Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.011Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.017Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.023Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.033Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.038Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.044Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.641 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.070Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.075Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.135Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.205Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.736 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.472 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.862 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.565 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.881 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.661 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.364Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.427Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.340 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.688Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.350 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.416 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.734 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.890 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.426 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.790Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.793Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.845Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.887 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.850Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.850Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.604 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 62.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 64.673 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 49.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.036 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:42.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.017Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.082Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.082Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.132Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.428 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.873 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.250Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.913 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.492 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.539 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.798 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.278 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.338Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.386Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.416Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.419Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.471Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.473Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.477Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.512Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.525Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.525Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.628Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.634Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.873 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.696Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.022 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.709Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.850 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.797Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.479 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.444 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.868Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.603 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.948 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.901Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.904Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.719 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.950Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:43.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.022Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.628 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.025Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.620 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.079Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.604 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.134Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.135Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.135Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.508 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.135Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.191Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.729 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.191Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.448 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.242Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.517 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.331Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.410Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.411Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.884 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.456Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.471Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.713 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.558Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.581Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.393 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.644Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.700Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.582 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.758Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.801Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.700 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.849Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.899Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.900Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.017 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.996Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:44.996Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.017Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.055Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.075Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.946 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.075Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.582 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.109Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.109Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.731 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.134Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.604 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.419 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.278Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.292Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.429 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.970 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.445Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.445Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.469Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.363 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.988 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.633Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.978 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.644Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.692Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.701Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.806 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.746Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.604 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.738 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.472 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.845Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.778 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:45.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.534 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.005Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.013Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.013Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.051 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.019Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.207 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.806 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.173Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.803 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.699 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.223Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.228Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.005 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.229Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.229Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.256Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.319Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.334Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.336Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.386Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.431 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.399Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.419Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.438Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.534 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.489Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.817 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.579Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.638Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.674Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.688Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.850 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.960 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.710Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.602 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.754Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.628 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.519 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.429 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.920Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.945 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:46.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.041Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.042Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.047Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.069Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.106Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.146Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.833 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.036 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.160Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.161Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.874 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.270Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.673 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.299Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.299Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.313Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.830 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.331Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.331Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.331Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.386Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.401Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.409Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.439Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.439Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.615 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.499Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.553 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.526Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.967 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.545Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.549Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.567Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.633Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.674Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.798 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.702Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.615 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.015 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.751Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.688 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.786Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.850Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.867Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.314 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.946 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.726 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:47.997Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.054Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.055Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.448 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.109Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.114Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.302 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.231Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.568 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.299Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.299Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.780 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.336Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.707 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.385Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.406Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.438Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.438Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.439Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.489Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.511Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.543Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.082 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.907 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.545Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.562Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.562Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.787 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.597Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.674Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.517 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.674Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.696Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.697Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.746Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.590 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.797Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.797Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.827Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.828Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.917Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.945Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.829 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.950Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:48.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.017Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.055Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.056Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.058Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.070Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.350 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.124Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.830 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.233Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.235Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.963 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.235Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.682 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.344Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.025 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.399Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.780 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.443Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.884 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.462Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.960 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.590 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.453 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.693 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.531Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.541Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.547Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.571Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.625 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.862 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.633Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.697Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.560 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.025 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.887 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.827Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.857Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.910Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.973 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:49.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.022Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.548 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.594 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.536 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.078Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.759 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.699 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.132Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.132Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.057 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.630 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.466 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.202Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.348Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.348Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.360Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.400Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.918 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.774 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.456Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.512Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.363 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.429 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.702Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.758Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.758Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.773Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.995 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.827Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.829Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.661 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.863Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.881Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.881Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.910Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.959 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:50.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.009Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.013Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.590 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.054Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.856 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.065Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.079Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.693 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.105Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.160Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.043 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.225Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.904 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.344Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.356Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.626 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.713 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.811 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.462Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.778 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.620 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.597Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.637Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.644Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.881 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.548 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.692Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.705 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.766 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.340 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.740Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.796Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.807Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.673 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.840Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.849Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.857Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.860Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.367 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.899Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:51.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.626 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.610 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.047Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.049Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.059Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.076Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.078Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.924 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.519 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.643 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.134Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.134Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.164Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.548 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.268Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.272 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.522 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.471Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 63.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.907 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.502Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.553Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.674 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.827 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.610Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.644Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.700Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.701Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.729 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.746Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.769Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.771Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.772Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.793Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.801Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.335 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.867Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.919Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.626 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.081 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.620 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.729 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:52.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.390 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.234 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.124Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.124Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.918 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.227Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.766 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.249Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.742 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.319Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.798 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.008 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.380Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.381Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.432Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.619 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.505Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.522Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.731 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.525Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.560Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.904 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.634Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.688Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.394 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.697Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.929 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.479 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.751Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.426 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.770Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.786Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.954 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.799 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.905Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.734 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.811 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.949 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.809 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:53.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.009Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.048Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.049Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.058Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.350 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.105Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.390 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.431 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.225Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.393 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.278Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.297Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.995 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.082 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.448 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.402Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.402Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.674 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.565 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.619 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.439Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.456Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.541Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.604 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.613Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.696 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.486 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.721Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.751Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.807Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.536 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.827Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.827Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.867Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.867Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.082 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.919Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.554 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:54.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.041Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.074Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.075Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.075Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.948 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.670 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.480 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.565 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.363 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.181Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.235Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.249Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.250Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.253Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.869 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.340 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.633 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.272 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.411Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.777 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.461Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.462Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.595 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.511Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.512Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.477 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.535 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.726 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.642 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.651Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.850 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.555 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.780 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.726 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.813Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.548 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.845Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.614 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.903 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.913Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.945Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.653 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.555 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.949Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:55.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.434 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.046Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.056Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.056Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.105Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.105Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.594 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.169Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.670 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.242Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.268Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.346Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.881 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.346Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.404Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.390 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.903 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.729 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.970 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.756 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.350 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.709Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.742 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.367 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.801Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.653 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.484 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.828Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.643 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.910Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.988 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.928Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.928Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.642 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:56.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.995 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.054Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.949 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.078Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.083Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.104Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.047 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.105Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.109Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.164Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.170Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.484 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.328Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.661 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.031 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.966 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.051 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.520Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.521Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.579Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.581Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.638Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.907 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.862 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.773Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.302 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.829Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.830Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.390 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.945 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.899Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.899Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:57.999Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.555 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.025Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.734 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.046Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.258 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.253Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.278Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.278Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.869 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.411Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.970 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.464Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.545Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.416 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.535 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.665Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.665Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.665Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.669Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.881Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.881Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.008 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.272 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:58.999Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.913 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.003Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.380 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.799 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.664 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.055Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.056Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.058Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.112Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.112Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.763 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.477 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.486 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.211Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.960 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.753 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.336Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.366Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.809 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.959 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.416Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.436Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.437Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.476Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.002 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.630 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.911 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.697Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.697Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.833 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.751Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.784Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.505 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.786Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.786Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.807Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.853Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.860Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.978 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.207 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.911 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:35:59.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.508 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.390 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.945 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.559 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.911 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.615 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.242Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.243Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.234 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.319Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.688 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.326Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.347Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.419Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.439Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.014 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.441Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.464Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.954 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.530Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.507 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.578Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.806 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.829Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.833 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.393 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.899Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.995 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:00.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.009Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.019Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.057Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.132Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.191Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.587 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.235Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.391 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.823 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.402Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.753 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.778 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.461Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.949 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.729 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.702Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.862 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.753 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.603 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.769 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.813Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.696 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.853Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:01.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.062Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.065Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.074Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.089Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.100Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.102Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.105Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.815 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.950 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.966 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.488 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.990 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.223Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.966 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.225Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.278Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.290Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.565 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.805 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.326Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.480 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.963 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.388Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.389Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.401Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.817 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.456Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.658 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.845 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.610 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.505 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.656 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.293 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.688Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.434 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.723Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.431 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.740Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.865 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.827Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.828Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.829Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.363 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.587 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:02.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.031 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.978 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.065Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.169Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.169Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.172Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.172Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.240Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.311 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.924 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.299Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.331Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.366Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.386Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.848 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.937 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.439Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.919 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.464Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.471Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.587 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.520Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.534Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.856 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.614 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.824 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.688 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.626 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.669Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.568 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.537 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.729 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.813Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.766 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.860Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.913Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.603 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.830 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.945Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:03.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.874 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.522 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.038 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.949 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.959 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.102Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.135Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.603 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.205Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.205Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.412 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.242Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.536 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.292Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.334Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.385Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.386Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.416Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.441Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.470Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.470Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.470Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.526Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.526Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.031 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.633Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.651Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.710Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.740Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.682 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.881Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.554 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:04.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.041Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.042Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.658 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.890 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.094Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.815 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.448 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.202Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.235Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.235Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.507 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.256Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.294Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.057 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.022 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.392Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.848 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.443Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.464Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.464Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.502Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.599 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.567Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.567Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.610Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.038 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.818 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.477 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.335 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.713 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.796Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.850Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.852Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.619 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.913Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.766 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.930Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:05.979Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.025Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.025Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.924 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.705 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.017 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.602 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.202Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.590 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.884 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.353 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.312Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.428 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.368Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.427Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.477 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.432Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.531Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.532Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.014 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.545Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.549Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.988 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.633Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.884 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.005 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.709Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.741Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.865Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.057 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.929Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.961Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:06.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.009Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.740 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.107Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 4.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.124Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.128Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.205Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.227Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.240Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.259Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.833 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.337Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.337Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.492 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.356Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.887 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.386Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.406Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.406Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.696 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.461Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.469Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.520Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.856 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.560Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.562Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.700Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.744Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.752Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.772Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.806Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.390 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.904Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.904Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.928Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.719 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.929Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.929Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.988Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:07.999Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.058Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.486 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.109Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.132Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.259 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.599 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.699 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.197Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.904 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.594 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.604 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.336Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.769 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.385Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.633 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.437Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.437Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.234 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.502Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.543Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.058 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.637Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.651Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.466 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.658Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.827 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.703Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.710Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.848 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.856 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.784Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.807Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.850Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.817 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.927Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.930Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.980Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:08.980Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.003Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.045Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.950 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.630 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.472 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.673 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.073Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.022 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.091Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.726 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.602 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.477 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.191Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.865 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.619 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.738 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.368Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.368Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.335 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.798 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.036 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.489Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.705 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.543Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.610 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.581Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.353 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.597Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.632Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.709Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.721Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.754Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.830Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.859Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.278 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.933Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.805 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.058 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:09.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.005Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.055Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.625 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.907 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.120Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.393 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.135Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.154Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.172Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.205Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.038 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.233Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.233Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.259Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.759 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.346Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.890 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.967 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.881 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.785 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.990 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.394 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.581Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.674Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.431 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.758Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.772Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.773Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.873 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.806Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.819Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:10.999Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.017Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.017Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.033Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.033Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.033Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.033Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:11.288Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.459 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:20.653Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 4.688 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:20.660Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 1.824 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:20.662Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 9.409 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:20.755Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 200 602 13.233 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:20.759Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 2.650 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:20.952Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.015 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.522Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.656 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.638Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.353 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.674Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.692Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.294 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.507 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.734Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.734Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.746Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.757Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.614 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.008 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.813Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.865Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.699 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.878 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.928Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.777 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:25.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.080 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.472 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.335 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.078Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.114Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.948 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.132Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.283 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.191Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.202Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.211Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.198 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.228Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.231Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.057 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.664 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.878 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.347Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.348Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.388Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.002 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.388Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.410Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.641 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.445Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.582 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.459Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.461Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.470Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.500Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.500Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.512Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.963 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.549Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.904 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.576Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.079 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.701Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.904 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.792Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.519 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.873 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.819Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.849Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.468 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.907 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.919Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.933Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.950Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.980Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.980Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.996Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:26.999Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.314 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.444 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.453 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.037Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.046Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.766 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.113Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.656 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.149Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.945 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.223Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.240Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.002 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.268Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.705 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.960 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.334Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.945 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.461Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.476Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.526Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.534Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.576Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.665Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.681Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.734Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.978 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.615 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.472 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.919Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.829 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.919Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.058 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.568 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.484 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.979Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:27.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.022Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.041Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.079Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.079Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.091Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.988 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.874 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.169Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.191Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.642 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.223Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.228Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.228Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.240Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.959 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.292Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.480 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.423Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.439Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.824 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.492 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.547Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.929 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.597Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.057 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.681Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.614 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.681Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.294 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.259 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.628 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.796Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.643 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.391 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.852Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.853Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.868Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.031 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.922Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.928Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:28.997Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.043 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.937 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.913 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.132Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.696 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.234Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.253Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.270Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.829 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.297Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.319Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.326Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.344Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.346Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.348Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.626 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.777 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.503 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.423Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.394 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.462Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.434 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.302 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.726 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.520Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.520Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.521Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.541Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.553Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.688 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.017 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.571Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.578Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.578Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.466 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.610Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.869 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.637Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.038 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.692Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.701Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.740Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.744Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.746Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.752Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.492 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.806Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.830Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.845Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.815 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.863Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.824 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.630 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.453 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.614 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:29.979Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.674 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.045Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.431 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.078Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.091Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.094Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.472 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.114Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.582 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.173Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.619 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.181Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.234Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.693 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.336Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.368Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.385Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.614 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.401Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.595 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.456Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.781 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.488Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.492Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.547Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.970 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.353 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.703Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.503 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.703Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.744Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.754Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.757Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.464 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.780 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.394 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.853Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.948 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.845 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:30.996Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.023Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.488 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.042Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.042Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.073Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.519 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.135Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.164Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.211Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.604 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.233Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.250Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.488 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.299Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.519 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.326Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.338Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.347Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.360Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.360Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.360Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.368Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.426 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.386Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.444Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.444Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.473Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.391 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.476Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.477Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.543Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.464 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.613Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.641 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.628Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.723Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.700 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.653 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.768Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.790Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.813Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.978 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.367 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.560 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.867Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.806 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.997 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.910Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.929Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.429 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.966 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.699 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.833 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.207 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.911 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:31.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.047Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.048Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.769 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.112Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.393 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.960 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.311 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.419 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.164Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.258 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.223Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.227Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.228Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.002 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.249Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.250Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.973 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.428 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.312Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.328Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.375Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.381Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.385Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.988 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.445Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.473Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.511Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.521Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.522Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.525Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.809 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.486 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.576Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.576Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.798 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.710Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.734Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.744Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.234 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.773Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.790Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.807Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.742 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.431 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.840Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.848 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.616 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.466 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:32.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.013Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.664 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.207 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.029Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.113Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.803 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.132Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.181Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.503 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.948 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.559 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.191Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.227Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.250Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.270Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.313Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.319Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.360Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.360Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.466 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.729 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.411Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.869 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.756 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.423Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.781 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.534Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.534Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.587 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.576Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.537 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.642 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.610Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.634Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.681Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.904 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.492 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.806 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.700Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.428 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.730Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.784Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.479 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.792Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.813Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.367 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.845Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.901Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.901Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.901Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.778 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.910Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.954 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.922Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.950 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.961Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.817 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:33.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.017Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.019Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.075Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.075Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.078Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.391 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.270Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.995 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.326Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.988 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.338Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.393 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.641 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.402Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.402Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.404Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.829 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.456Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.547Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.314 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.272 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.644Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.644Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.600 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.674Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.363 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.733Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.862 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.751Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.751Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.805Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.555 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.819Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.827Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.480 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.859Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.881Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.753 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.781 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.910Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.922Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.961Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:34.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.013Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.294 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.037Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.881 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.065Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.653 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.113Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.113Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.154Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.169Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.228Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.234Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.890 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.619 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.713 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.756 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.402Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.404Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.427Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.443Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.443Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.997 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.508 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.501Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.501Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.505Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.507Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.656 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.522Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.581Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.995 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.335 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.681Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.503 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.733Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.038 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.740Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.741Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.744Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.884 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.793Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.827Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.852Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.881Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.259 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.945Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:35.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.029Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.062Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.367 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.094Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.135Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.393 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.803 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.005 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.904 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.212Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.223Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.235Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.240Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.484 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.682 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.292Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.296Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.865 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.198 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.314 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.318Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.346Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.348Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.272 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.366Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.641 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.406Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.432Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.441Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.830 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.259 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.391 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.198 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.530Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.970 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.468 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.581Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.391 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.613Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.632Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.632Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.696Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.793Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.853Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.036 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.466 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.900Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.910Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.913 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.930Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.945Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.014 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:36.996Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.850 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.602 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.614 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.967 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.970 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.568 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.198Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.043 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.243Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.268Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.270Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.270Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.484 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.294Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.348Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.366Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.554 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.399Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.410Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.438Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.234 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.477Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.816 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.520Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.874 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.002 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.628Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.780 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.734Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.746Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.754Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.784Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.796Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.466 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.849Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.852Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.604 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.959 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.380 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.756 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:37.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.022Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.534 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.041Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.041Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.057Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.272 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.416 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.094Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.444 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.112Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.114Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.682 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.884 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.170Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.170Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.946 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.197Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.554 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.231Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.240Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.240Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.249Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.249Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.270Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.948 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.312Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.594 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.313Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.043 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.534 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.389Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.392Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.846 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.402Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.439Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.619 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.459Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.461Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.742 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.472 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.522Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.525Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.532Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.560Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.597Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.736 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.468 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.966 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.283 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.769 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.730Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.699 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.278 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.878 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.595 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.610 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.882Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.905Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.763 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:38.999Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.002 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.041Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.809 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.062Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.954 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.113Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.114Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.172Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.173Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.630 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.492 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.191Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.242Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.243Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.243Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.260Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.297Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.297Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.429 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.344Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.272 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.380Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.388Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.350 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.539 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.559 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.005 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.589 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.419 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.522Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.549Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.924 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.311 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.567Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.571Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.578Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.043 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.258 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.805 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.774 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.634Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.652Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.625 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.721Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.803 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.656 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.819Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.997 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.508 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.824 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.868Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.371 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.428 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.930Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.930Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.259 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.830 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.419 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.674 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:39.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.738 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.023Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.799 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.054Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.075Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.696 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.124Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.756 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.017 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.149Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.080 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.197Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.211Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.633 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.615 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.294Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.336Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.477 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.346Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.682 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.404Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.404Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.411Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.738 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.443Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.553 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.499Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.517Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.521Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.522Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.532Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.547Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.380 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.873 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.816 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.651Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.710Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.740Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.746Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.582 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.429 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.786Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.813Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.881Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.005 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.881Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.753 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.934Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.949Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.805 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:40.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.013Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.024Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.025Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.033Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.997 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.078Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.120Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.149Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.172Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.416 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.603 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.233Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.233Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.292Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.803 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.081 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.337Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.337Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.354Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.565 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.594 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.432Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.441Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.443Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.431 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.502Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.809 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.522Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.553 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.545Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.553Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.806 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.638Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.466 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.669Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.390 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.723Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.758Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.954 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.773Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.614 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.431 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.853Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.857Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.867Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.988Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:41.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.210Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.210Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.212Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.225Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.416 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.278Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.294Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.738 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.317Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.318Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.336Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.338Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.565 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.283 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.366Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.388Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.402Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.427Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.436Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.959 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.474Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.477Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.500Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.500Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.511Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.534Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.562Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.571Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.960 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.581Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.198 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.874 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.740 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.692Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.448 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.798 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.773Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.079 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.795Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.800Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.051 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.719 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.294 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.688 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.887Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.234 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.599 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.937Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.950Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.778 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 46.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.105Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.106Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.134Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.517 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.212Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.890 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.830 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.292Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.294Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.453 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.299Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.756 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.326Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.385Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.404Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.441Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.726 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.456Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.471Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.499Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.553 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.521Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.545Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.545Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.726 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.937 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.610Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.610 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.978 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.554 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.283 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.723Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.751Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.619 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.771Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.340 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.772Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.763 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.857Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.642 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.880Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.707 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.419 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.900Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.905Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.927Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.928Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.803 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:43.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.029Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.809 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.038Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.492 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.073Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.753 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.472 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.693 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.949 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.268Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 60.619 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.290Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 56.488 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.758 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.334Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 81.429 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.380Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.382Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.234 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.399Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 63.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 61.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 46.081 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.511Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.567Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.567Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:36:44.568Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 2.761 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:02.950Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 4.839 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:02.965Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 5.958 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:02.966Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 4.683 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:03.046Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers HTTP/1.1" 200 602 8.264 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:03.050Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 2.833 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:03.249Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:11.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.537 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.653 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.348Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.381Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.500Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.511Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.552Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.552Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.412 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.581Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.081 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.692Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.730Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.751Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.754Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.796Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.830Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.899Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.945Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:12.997Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.042Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.047Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.075Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.091Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.102Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.106Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.787 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.164Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.314 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.197Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.937 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 61.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.364Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 69.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 73.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.389Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 66.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 58.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.587 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.401Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.664 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.511Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.521Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.532Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.562Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.576Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.734 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.628Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.637Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.380 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.948 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.700Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.701Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.758Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.777Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.805Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.830Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.656 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.924 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.207 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.479 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.930Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.394 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.955Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.464 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.731 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:13.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.017Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.049Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.073Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.074Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.134Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.862 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.869 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.340 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.274Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.352Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.383Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.017 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.419Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.427Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.437Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.476Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.865 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.534Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.590 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.547Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.597Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.508 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.302 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.700Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.714Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.950 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.752Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.844Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.913Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.980Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.079 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:14.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.045Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.046Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.046Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.048Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.553 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.132Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.203Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.210Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.278Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.354Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.924 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.432Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.493Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.541Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.696Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.730Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.464 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.854Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.895Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.559 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.911 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:15.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.005Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.817 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.023Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.058Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.106Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.106Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.124Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.134Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.729 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.164Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.503 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.079 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.228Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.249Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.338Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.375Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.484 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.392Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.427Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.464Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.464Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.465Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.610Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.669Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.697Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.697Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.480 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.047 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.900Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.738 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.696 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.920Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.658 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.015 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.997Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:16.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.303 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.850 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.047Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.587 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.048Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.079Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.251Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.257Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.258Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.268Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.269Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.281Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.315Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.316Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.319Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.322Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.331Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.336Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.355Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.357Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.365Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.368Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.373Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.375Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.377Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.379Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.380Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.381Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.382Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.384Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.385Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.386Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.525Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.538Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.561Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.567Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.367 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.603Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.603Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.535 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.610Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.614Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.617Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.622Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.632Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.632Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.633Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.634Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.639Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.655Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.658Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.970 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.505 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.679Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.680Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.686Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.539 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.708Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.712Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.803 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.730Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.017 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.589 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.824 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.790Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.797Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.995 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.849Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.946 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.863Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.905Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.910Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.919Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.959 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.919Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.963 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.961Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:17.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.033Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.065Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.082Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.548 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.112Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.278 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.191Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.818 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.225Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.633 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.364Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.410Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 61.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.534Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.534Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 57.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.547Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.589 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.552Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.448 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.428 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.673 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.740Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.823Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.781 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.979Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.778 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:18.999Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.041Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.042Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.015 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.106Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.464 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.112Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.112Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.297Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.329Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.332Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.707 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.399Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.418Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.599 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.558Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.967 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.633Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.878 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.537 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.748Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.759 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.005 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.867Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:19.867Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.949 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.078Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.106Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.522 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.117Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.138Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.205Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.211Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.235Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.337Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.410Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.423Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.881 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.464Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.492Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.878 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.502Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.058 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.528Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.537 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.416 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.579Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.752 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.599 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.651Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.667Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.082 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.723Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.792Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.796Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.796Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.801Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.859Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.865Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.905Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.641 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:20.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.778 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.047Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.055Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.082Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.093Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.149Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.780 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.210Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.227Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.555 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.227Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.328Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.355Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.381Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.392Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.047 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.417Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.437Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.464Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.353 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.015 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.873 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.499Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.531Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.696 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.557Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.576Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.628Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.662Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.705Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:21.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.829 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.084Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.590 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.135Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.136Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.431 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.160Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.464 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.815 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.197Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.212Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.243Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.845 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.250Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.290Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.292Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.719 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.329Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.038 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.380Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.399Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.473Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.487Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.530Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.543Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.701Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.878 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.918 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.758Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.736 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.797Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:22.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 46.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.846 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.210Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.025 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 62.881 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.262Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 72.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.641 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 85.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.389Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 134.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 88.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.441Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 87.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 112.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 93.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:23.454Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.617Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.625Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.626Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.633Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.640Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.660Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.663Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.477 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.679Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.682Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.702Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.715Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.740Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.740Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.757Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.758Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.766Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.770Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.803Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.807Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.840Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.843Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.858Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.865Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.294 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.880Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.887Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.898Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.899Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.916Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.294 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.919Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.924Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.927Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.928Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.559 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.936Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.957Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.958Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.959Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.961Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.963Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.970Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.974Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.976Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.977Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.302 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.982Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.985Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.986Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.987Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.987Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.989Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:24.991Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.006Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.294 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.009Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.010Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.011Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.062Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.069Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.087Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.088Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.144Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.148Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.160Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.161Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.261Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.265Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.275Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.890Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.893Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.894Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.905Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.906Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.917Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.918Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.918Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.919Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.464 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.927Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.932Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.943Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.945Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.951Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.953Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.958Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.960Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.969Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.972Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.977Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:25.981Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.003Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.004Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.028Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.029Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.740 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.040Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.051Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.061Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 4.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.066Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 60.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.075Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 59.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.076Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.079Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 76.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 70.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.093Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.094Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.100Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.763 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.135Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.140Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.731 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.149Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.150Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.017 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.164Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.174Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.186Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.189Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.193Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.194Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.200Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.209Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.219Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.229Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.231Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.234Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.239Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.252Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.371 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.258Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.267Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.283Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.284Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.286Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.289Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.304Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.811 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.318Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.319Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.553 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.347Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.352Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.293 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.373Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.395Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.005 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.396Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.402Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.407Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.410Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.411Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.419Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.421Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.427Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.437Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.222 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.444Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.464Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.467Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.472Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.473Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.478Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.492Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.525Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.535Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.541Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 89.816 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.542Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 66.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.562Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.572Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 64.385 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.587Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 59.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.591Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.597Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 60.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.603Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.607Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.611Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 72.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.639Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.653Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 57.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.673Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 69.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.673Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.677Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.692Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 65.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 63.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.703Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.705Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 67.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.717Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.723Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.725Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.726Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.731Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.735Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.753Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.756Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.760Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.762Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.768Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.780Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.787Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.641 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.817Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.825Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 66.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.833Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 64.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.857Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.860Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.865Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 69.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.874Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 71.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.879Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.881Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.889Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.893Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.906Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.913Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.918Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.920Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.920Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 5.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.934Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.939Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.942Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 2.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.630 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:26.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.045Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.078Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.082Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 51.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.114Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.950 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.170Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 58.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 56.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.256Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.290Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.347Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.479 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.356Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.375Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.456Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.494Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.549Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 54.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.521 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.648Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.669Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 56.394 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.773Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 59.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 58.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 57.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 58.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.859Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.859Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 46.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.863Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.970 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.864Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.881 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.928Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.560 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.961Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:27.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.008Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.009Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.011Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.015Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.021Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.025Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.028Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.054Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.063Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.077Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.099Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.102Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.120Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.929 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.146Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.603 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.811 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.205Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.228Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.242Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.294Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.484 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.329Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 88.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 77.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.463Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 80.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.471Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 69.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 68.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 59.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.945 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 49.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 45.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.562Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.568Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.434 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.653 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.641Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.674Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.471 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.599 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.697Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.730Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.862 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.733Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.742 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.326 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.937 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.628 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.818 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.988 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:28.949Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.434 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.058Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.058Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.017 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.116Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.517 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.137Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.874 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.290Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.299Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.346Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.486 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.535 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.372Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.410Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.763 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.423Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.459Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.476Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.509Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.949 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.543Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.597Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.613Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.644Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.710Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.721Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.610 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.769Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.973 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.980 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.419 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.793Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.804Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.827Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.829Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.868Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.272 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.917Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.917Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.945Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.953Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.537 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:29.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.355 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.009Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.019Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.450 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.045Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.642 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.075Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.077Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.604 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.973 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.989 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.199Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.243Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.827 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.272 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.079 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.766 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.431 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.367 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.470Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.466 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.476Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.562Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.505 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.816 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.613Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.627Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.434 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.080 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.733Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.903 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.769Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.696 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.799Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.806Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.568 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.819Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.850Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.852Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.860Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.860Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.900Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.904Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:30.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.003Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.017Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.018Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.080Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.950 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.085Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.865 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.102Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.508 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.106Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.133Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.658 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.157Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.887 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.210Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.210Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.225Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.022 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.231Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.763 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.270Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.295Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.590 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.329Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.380Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.283 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.385Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.884 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.392Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.519 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.878 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.440Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.259 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.302 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.594 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.531Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.651Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.517 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.652Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.652Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.943 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.701Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.707Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.751Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.022 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.786Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.849Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.850Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.031 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.859Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.904Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.905Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.591 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.907Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.817 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.965Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:31.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.033Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.039Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.092Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.874 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.102Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.149Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.293 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.335 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.161Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.654 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.228Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.228Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.231Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.251Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.253Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.285Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.688 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.357Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.364Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.364Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.389Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.818 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.460Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.599Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:32.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.615 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.742 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.520Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.524Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.522 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.635Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.047 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.959 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.688Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.734Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.963 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.988Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:33.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.022Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.045Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.082Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.091Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.104Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.109Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.146Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.568 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.031 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.290Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.318Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.052 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.427Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.816 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.473Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.509Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.509Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.900 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.602 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.702Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.036 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.703Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.757Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.828Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.700 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:34.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.009Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.042Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.105Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.126Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.625 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.170Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.209Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.526 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.256Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.261Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.014 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.565 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.287Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.336Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.354Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.371Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.589 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.378Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.400Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.419Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.462Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.924 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.444 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.798 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.531Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.638Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.198 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.651Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.651Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.652Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.869 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.625 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.772Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.753 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.716 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.829Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.829Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.876 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.884Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.886Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.896Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.734 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.972Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:35.995Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.658Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.669Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.678Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.688Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.691Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.695Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.696Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.701Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.703Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.720Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.721Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.725Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.726Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.731Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.732Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.752Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.754Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.757Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.758Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.780Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.782Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.785Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.785Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.800Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.802Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.804Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.805Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.814Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.820Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.825Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.832Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.832Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.834Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.388 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.835Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.949 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.838Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.839Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.839Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.841Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.841Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.847Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.849Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.856Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.857Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.868Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.870Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.876Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.878Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.880Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.882Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.885Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.887Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.898Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.901Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.912Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.914Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.922Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.924Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.936Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.938Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.944Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.946Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.959Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.960Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.968Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.970Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.986Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.988Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:39.999Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.003Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.011Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.013Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.025Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.032Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.050Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.052Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.057Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.058Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.064Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.065Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.079Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.082Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.088Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.090Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.101Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.103Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.112Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.116Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.126Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.128Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.129Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.133Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.140Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.142Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.148Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.150Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.183Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.188Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.205Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.207Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.213Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.215Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.216Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.217Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.229Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.231Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.233Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.234Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.255Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.258Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.259Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.264Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.265Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.274Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.290Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.293Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.295Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.296Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.305Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.309 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.308Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.328Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.337Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.350Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.351Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.362Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.366Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.389Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.390Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.427Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.429Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.443Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.454Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.486Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.488Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.494Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.495Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.517Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.518Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.520Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.524Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.544Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.545Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.554Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.731 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.561Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.574Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.578Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.592Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.596Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.607Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.619Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.636Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.644Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.681Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.682Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.710Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.719Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.739Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.740Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.765Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.775Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.787Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.790Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.826Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.827Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.568 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.848Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.859Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.882Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.885Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.903Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.922Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.946Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.952Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.978Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.983Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.293 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.992Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.993Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:40.999Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.003Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.014Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.026Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.035Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.049Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.062Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.069Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.073Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.078Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.095Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.096Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.102Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.106Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.118Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.120Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.147Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.149Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.158Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.160Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.161Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.163Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.165Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.167Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.168Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.181Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.186Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.186Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.187Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.203Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.204Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.205Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.206Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.206Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.207Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.311 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.208Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.218Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.221Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.222Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.228Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.240Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.240Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.241Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.243Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.243Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.244Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.244Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.255Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.256Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.257Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.258Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.277Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.279Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.288Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.288Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.292Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.293Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.363Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.364Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.375Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.392Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.486Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.488Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.496Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.497Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.529Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.531Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.535Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.540Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.542Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.612 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.546Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.547Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.552Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.556Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.562Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 46.683 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.563Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.568Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.810 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.571Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.575Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.580Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.815 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.586Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.586Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.590Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.597Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.602Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.607Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 36.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 35.630 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.617Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.625Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.627Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.632Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.633Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.637Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.642Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.646Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.658Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.660Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.662Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.507 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.676Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.680Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.684Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.687Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.689Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.616 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.692Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.699Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.759 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.701Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.715Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.717Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.215 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.726Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.731Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.734Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.741Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.079 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.745Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.746Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.751Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.757Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.766Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.769Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.771Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.496 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.779Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.791Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.792Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.793Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.797Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.522 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.810Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.810Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.815Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.817Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.823Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.239 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.827Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.833Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.843Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.846Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.726 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.865Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.867Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.868Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.870Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.872Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.875Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.881Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.891Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.895Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.896Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.900Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.901Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.902Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.914Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.917Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.921Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.924Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.846 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.927Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.928Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.856 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.933Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.936Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.939Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.943Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.951Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.952Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.955Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.957Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.959Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.960Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.892 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.961Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.964Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.966Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.974Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.979Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:41.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.486 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.009Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.013Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.756 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.015Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.016Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.024Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.371 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.046Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.049Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.054Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.056Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.073Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.074Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.077Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.084Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.087Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.101Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.105Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.108Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.109Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.123Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.127Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.131Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.131Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.142Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.869 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.580 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.157Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.158Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.160Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.169Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.175Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.188Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.195Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.196Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.197Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.198Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.212Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.216Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.218Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.219Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.223Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.225Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.229Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.233Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.903 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.241Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.245Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.253Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.264Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.275Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.277Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.281Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.286Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.288Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.338Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.773 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.353Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.359Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.363Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.366Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.366Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.374Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.376Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.382Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.383Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.391Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.396Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.399Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.402Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.234 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.406Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.410Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.422Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.427Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.427Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.314 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.433Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.435Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.436Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.439Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.440Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.441Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.448Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.449Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.454Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.461Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.466Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.470Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.479Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.490Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.491Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.494Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.498Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.500Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.501Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.502Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.520Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.521Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.522Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.522Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.523Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.536Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.539Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.542Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.547Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.550Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.554Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.259 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.560Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.565Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.570Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.573Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.850 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.573Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.574Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.575Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.576Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.577Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.586Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.588Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.595Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.598Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.608Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.612Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.600 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.616Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.625Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.627Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.628Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.631Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.640Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.642Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.643Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.644Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.652Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.660Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.670Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.676Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.679Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.682Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.686Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.553 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.696Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.619 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.697Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.697Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.702Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.704Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.259 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.708Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.709Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.717Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.718Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.726Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.769Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.772Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.780Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.840Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.847Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.852Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.852Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.380 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.853Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.856Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.858Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.859Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.859Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.488 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.860Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.863Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.864Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.872Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.872Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.880Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.880Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.898Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.902Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.908Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.910Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.911Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.917Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.673 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.925Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.925Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.926Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.927Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.929Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.936Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.937Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.938Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.942Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.953Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.957Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.959Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.961Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.964Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.973Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.977Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.982Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.750 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.988Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.990Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.991Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.992Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.993Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:42.993Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.003Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.007Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.015Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.017Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.021Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.022Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.024Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.027Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.029Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.033Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.042Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.055Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.056Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.057Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.069Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.073Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.273 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.075Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.076Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.077Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.077Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.078Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.079Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.080Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.097Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.101Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.106Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.122Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.128Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.135Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.141Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.144Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.823 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.904 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.186Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.187Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.188Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.224Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.227Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.231Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.236Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.535 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.246Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.253Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.256Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.257Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.259Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.261Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.262Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.263Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.264Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.265Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.266Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.266Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.267Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.268Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.269Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.270Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.270Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.271Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.274Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.275Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.276Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.281Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.286Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.290Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.285 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.295Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.303Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.309Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.480 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.316Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.319Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.323Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.328Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.329Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.330Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.331Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.586 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.332Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.333Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.334Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.335Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.336Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.337Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.191 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.337Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.338Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.339Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.340Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.341Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.342Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.343Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.345Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.345Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.346Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.348 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.347Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.348Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.349Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.350Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.351Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.351Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.352Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.356Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.358Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.361Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.362Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.365Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.369Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.373Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.379Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.380Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.381Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.384Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.386Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.873 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.392Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.817 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.396Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.397Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.398Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.399Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.400Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.401Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.403Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.404Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.405Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.406Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.408Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.408Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.410Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.411Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.314 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.412 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.272 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.443Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.277 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.446Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.447Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.457Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.459Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.502Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.553Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.022 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.665Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.727Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.728Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.762Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.766Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.587 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.825Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.845Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.535 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.925Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.927Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.693 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.929Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.492 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.949Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.799 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:43.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.045Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.045Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.046Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.311 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.056Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.056Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.769 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.102Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.102Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.616 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.104Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.379 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.869 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.890 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.227Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.434 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.363 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.283 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.539 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.278Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.290Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.335Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.479 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.337Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.344Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.388Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.427Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.283 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.443Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.450Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.495Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.507 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.500Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.547Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.549Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.558Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.934 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.555 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.665Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.338 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.947 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.710Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.726Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.207 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.772Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.740 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.539 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.790Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.832Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.835Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.852Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.857Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.051 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.881Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.898Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.922Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.931Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.949Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.831 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.977Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.976 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:44.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.016Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.026Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.048Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.070Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.083Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.780 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.120Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.311 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.143Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.833 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.240 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.271 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.197Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.008 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.809 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.270Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.620 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.326Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.328Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.336Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.338Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.387Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.664 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.389Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.531 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.399Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.609 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.436Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.441Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.008 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.484Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.490Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.499Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.500Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.541Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.551Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.352 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.552Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.258 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.499 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.598Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.453 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.077 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.639Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.656Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.665Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.997 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.568 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.824 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.746Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.494 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.670 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.818 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.517 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.783Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.819Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.419 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.833Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.841Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.824 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.882Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.882Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.920Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.198 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.920Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.926Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.602 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.982Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.453 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:45.994Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.506 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.021Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.014 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.036Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.066Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.086Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.099Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.026 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.152Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.777 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.164Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.242Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.008 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.258Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.259Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.267Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.268Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.291Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.315Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.800 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.453 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.682 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.338Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.929 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.438Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.469Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.910 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.471Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.763 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.550Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.552Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.503 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.583Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.966 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.387 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.647Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.655Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.666Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.709Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.716Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.353 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.745Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.572 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.787 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.800Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.801Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.806Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.537 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.818Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.857Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.865Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.025 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.846 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.922Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.054 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.228 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:46.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.033Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.082Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.090Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.100Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.653 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.740 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.145Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.293 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.161Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.162Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.057 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.214Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.903 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.264Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.415 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.286Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.297Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.198 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.316Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.961 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.333Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.783 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.337Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.374 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.347Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.656 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.385Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.393Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.406Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.409Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.539 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.423Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.426Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.455Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.694 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.850 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.470Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.705 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.916 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.499Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.525Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.973 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.547Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.552Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.803 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.567Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.293 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.607 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.619 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.838 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.664Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.669Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.778 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.704Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.711Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.712Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.718Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.599 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.750Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.565 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.800Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.812Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.827Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.883 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.849Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.406 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.860Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.894Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.919Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.569 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.226 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.432 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:47.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.508 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.007Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.966 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.031Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.045Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.064Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.074Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.335 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.107Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.315 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.129Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.559 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.131Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.153Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.957 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.503 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.177Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.190Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.197Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.340 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.367 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.227Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.046 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.253Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.268Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.811 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.278Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.412 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.292Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.294Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.484 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.055 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.283 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.392Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.421Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.446Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.477Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.405 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.505Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.508Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.393 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.523Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.548Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.080 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.552Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.567Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.569Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.577Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.924 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.621Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.414 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.232 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.630 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.721 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.702Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.846 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.741Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.801Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.801Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.808Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.466 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.865Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.866Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.882Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.707 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.923Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.930Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.996Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.996Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.997Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.011 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.252 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.047Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.824 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.095Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.110Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.114Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.963 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.120Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.081 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.684 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.142Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.937 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.156Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.160Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.948 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.167Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.195Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.230Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.235Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.283Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.301Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.740 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.323Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.693 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.374Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.389Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.389Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.389Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.398Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.301 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.492 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.448Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.471Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.472Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.777 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.545Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.334 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.479 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.734 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.602Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.604Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.924 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.060 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.990 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.631Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.812 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.651Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.713 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.653Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.481 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.537 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.668Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.079 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.817 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.741Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.776Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.907 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.781Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.788Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.712 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.363 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.873 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.848Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.813 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.258 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.916Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.024 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.983Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.988Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.989Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:49.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.054Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.055Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.113Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.114Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.280 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.124Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.012 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.272 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.761 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.232Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.811 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.653 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.249Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.249Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.434 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.310Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.311Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.331Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.375Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.582 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.702 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.376Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.381Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.881 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.436Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.438Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.476Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.347 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.411 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.740 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.498Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.330 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.532Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.588Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 46.559 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.594Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.600Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.419 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.603Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.643Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.673 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.644Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.223 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.814 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.546 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.660Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.692Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.694Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.560 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.708Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.709Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.704 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.709Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.741Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.744Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.744Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.630 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.244 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.756Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.789Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.793Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.022 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.793Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.205 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.560 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.842Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.861Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.726 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.009 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.564 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.897Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.457 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.914Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.930Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.028 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.937Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.970Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.971Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.987Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.672 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:50.998Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.002Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.019Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.019Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.022Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.032Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.443 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.079Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.079Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.087Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.113Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.181Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.313 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.197Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.216Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.246Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.247Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.700 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.281Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.293Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.300Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.469 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.745 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.353Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.799 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.354Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.067 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.363Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.756 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.386Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.395Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.403Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.409Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.409Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.412Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.434Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.442Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.817 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.452Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.207 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.459Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.461Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.481Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.489Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.670 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.511Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.992 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.559Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.562Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.508 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.579Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.612Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.350 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.746 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.646Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.279 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.658Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.659Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.276 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.661Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.696Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.294 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.713Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.854 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.742Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.743Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.874 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.846 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.790Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.791Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.616 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.816Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.819Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.830Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.846Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.847Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.988 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.439 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.877Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.711 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.891Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.904Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.910Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.936Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.548 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.937Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.956Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.736 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.992Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.002 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.335 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:51.993Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.973 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.008Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.650 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.060Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.345 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.062Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.067Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.472 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.119Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.123Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.668 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.124Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.124Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.176Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.180Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.182Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.847 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.183Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.661 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.383 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.234Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.237Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.238Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.288Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.503 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.289Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.342Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.806 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.005 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.343Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.392Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.394Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.409Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.946 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.444Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.444Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.445Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.447Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.457Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.496Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.310 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.497Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.336 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.499Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.500Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.500Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.505Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.560Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.560Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.865 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.561Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.562Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.615 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.235 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.615Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.936 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.798 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.680Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.069 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.751Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.765Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.797Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 50.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 55.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.871Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.706 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 40.258 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 33.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.876Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.735 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.976Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 48.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.978Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.979Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 41.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.979Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 47.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:52.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.048Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.049Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 32.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.049Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.738 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.051Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.055Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.967 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.057Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.398 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.125Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.434 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.525 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.132Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.204Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 34.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.779 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.998 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.276Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.585 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.987 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.277Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.298Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.338Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.345Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.347Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.347Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.384Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.416Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.693 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.422Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.425Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.505 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.633 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.468Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.470Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.471Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.419 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.479Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.480Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.531Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.541Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.578Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.592Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.656 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.595Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.584 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.649Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.017 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.351 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.302 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.013 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.734Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.740Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.366 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.760Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.782Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.798Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.817Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.820Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.059 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.838Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.790 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.849Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.608 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.917 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.287 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.943Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.952Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:53.984Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.616 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.010Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.412 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.011Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.012Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.030Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.764 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.938 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.342 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.078Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.081Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.091Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.121Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.944 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.122Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.127Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.128Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.537 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.139Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.171Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.018 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.173Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.173Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.948 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.178Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.921 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.192Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.243Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.460 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.371 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.428 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.256Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.848 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.297Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 22.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.932 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.351Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.428Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.454Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.456Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.625 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.435 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.482Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.483Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.864 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.503Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.504Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.514Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.596 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.582 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.555Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.556Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.571Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.585Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.589Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 23.321 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:54.658Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.666 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.724 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.742 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.349Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.020 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.509Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.533Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.832 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.564Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.722Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.786Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.831Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.872 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.981Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.550 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:55.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.047Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.082Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.134Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.945 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.185Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.197Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.302Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.360Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.415Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.794 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.435Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.051 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.475Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.647 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.516Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.532Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.616Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.642 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.314 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.679Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.545 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.687Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.047 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.740Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.913 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.775Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.573 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:56.906Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.079Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.648 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.096Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.798 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.213Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.308Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.504 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.014 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.591Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.637Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.477 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.725Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.771Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.790Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.843Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.956 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.851Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.179 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.869Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.873Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:57.980Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.080 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.020Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.071Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.073Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.898 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.109Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.132Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.174Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.971 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.298 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.194Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.206Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.950 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.229Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.250Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.815 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.324Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.295 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.506Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.507Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.596Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.746Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.296 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.801Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.855Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.882Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:58.969Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.796 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.013Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 3.965 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.019Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.682 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.104Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.022 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.134Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.827 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.161Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.181Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.226Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.682 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.236Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.255Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.265Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.075 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.327Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.314 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.339Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.368Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.982 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.708 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.439Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.449Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.282 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.527Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.529Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.853 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.537Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.538Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.789 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.455 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.601Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.692 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.685Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.709Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.729Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.346 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.780Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" - - - "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:37:59.788Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.304 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.436Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.438Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.438Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.439Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.442Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.443Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.448Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.449Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.452Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.453Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.261 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.462Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.463Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.464Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.234 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.467Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.217 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.473Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.475Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.477Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.478Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.485Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.486Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.488Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.489Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.490Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.491Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.493Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.493Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.497Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.498Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.508Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.508Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.510Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.511Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.511Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.512Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.519Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.520Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.521Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.522Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.522Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.523Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.526Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.526Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.527Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.527Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.538Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.539Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.542Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.542Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.545Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.546Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.547Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.548Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.550Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.551Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.564Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.566Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.567Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.567Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.568Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.569Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.570Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.570Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.572Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:14.573Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.180Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.183Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.190Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.192Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.197Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.199Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.222Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.228Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.229Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.233Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.234Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.236Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.239Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.240Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.242Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.243Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.244Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.244Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.249Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.250Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.251Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.253Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.254Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.255Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.261Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.263Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.264Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.266Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.266Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.273Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.274Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.275Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.276Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.277Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.277Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.278Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.279Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.281Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.282Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.283Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.284Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.284Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.293Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.294Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.295Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.296Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.297Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.297Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.298Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.299Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.299Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.300Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.300Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.301Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.302Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.303Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.304Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.251 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.307Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.309Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.310Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.310Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.314Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.314Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.315Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.317Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.318Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.318Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.321Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.323Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.324Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.324Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.325Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.326Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.331Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.331Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.333Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.334Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.334Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.335Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.336Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.337Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.337Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.338Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.342Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.343Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.344Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.345Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.346Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.346Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.352Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.353Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.354Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.355Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.355Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.356Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.358Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.359Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.360Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.361Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.362Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.364Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.366Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.367Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.369Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.369Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.371Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.371Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.372Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.373Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.374Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.374Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.375Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.376Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.378Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.379Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.379Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.380Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.381Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.381Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.382Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.383Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.385Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.386Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.386Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.387Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.387Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.388Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.389Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.389Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.392Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.393Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.394Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.395Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.396Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.396Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.397Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.397Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.398Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.399Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.401Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.402Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.403Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.403Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.404Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.405Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.406Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.406Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.407Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.407Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.410Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.411Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.411Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.413Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.413Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.414Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.414Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.415Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.416Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.417Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.418Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.419Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.420Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.421Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.247 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.422Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.423Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.423Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.424Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.428Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.429Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.429Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.430Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.431Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.431Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.432Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.433Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.437Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.437Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.439Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.440Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.440Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.441Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.442Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.442Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.443Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.443Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.443Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.444Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.446Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.447Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.447Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.448Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.449Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.449Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.450Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.450Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.451Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.452Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.453Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.454Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.458Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.459Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.460Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 5.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.467Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.467Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.468Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.468Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.469Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.469Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.470Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.470Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.471Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.471Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.471Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.472Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.472Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.473Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.473Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.474Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.475Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.476Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.478Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.480Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.481Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.482Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.482Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.484Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.485Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.488Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.489Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.490Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.492Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.493Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.493Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.494Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.495Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.496Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.497Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.498Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.499Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.501Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.501Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.502Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.502Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.503Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.503Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.220 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.504Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.504Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.505Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.507Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.509Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.510Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.511Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.512Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.514Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.515Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.516Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.517Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.517Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.517Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.518Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.518Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.519Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.519Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.521Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.522Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.525Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.526Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.527Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.528Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.529Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.529Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.530Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.531Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.532Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.532Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.534Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.535Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.535Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.535Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.536Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.536Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.537Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.537Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.543Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.543Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.544Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.545Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.546Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.546Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.549Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.550Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.550Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.551Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.551Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.552Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.553Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.555Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.556Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.556Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 4.754 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.563Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.564Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.564Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.565Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.565Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.566Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.566Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.567Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.567Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.181 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.568Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.569Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.569Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.569Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.571Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.572Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.572Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.573Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.573Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.574Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.574Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.578Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.579Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.581Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.581Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.583Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.584Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.585Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.585Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.587Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.587Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.588Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.588Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.589Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.591Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.593Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.594Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.595Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.595Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.599Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.600Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.601Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.602Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.604Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.604Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.606Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.607Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.608Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.609Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.613Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.613Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.614Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.615Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.616Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.616Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.619Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.619Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.620Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.620Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.623Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.624Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.626Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.626Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.627Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.628Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.630Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.630Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.631Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.631Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.632Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.633Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.634Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.634Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.635Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.635Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.638Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.639Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.640Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.641Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.642Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.643Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.643Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.644Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.646Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.647Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.649Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.650Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.652Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.652Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.654Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.654Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.655Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.655Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.657Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.658Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.659Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.659Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.660Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.662Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.666Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.666Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.667Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.667Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.668Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.668Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.670Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.670Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.671Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.671Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.673Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.674Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.676Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.676Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.677Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.678Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.681Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.682Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.683Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.683Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.684Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.684Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.686Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.686Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.687Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.688Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.691Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.692Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.693Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.694Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.695Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.695Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.696Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.697Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.698Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.698Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.699Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.699Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.700Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.701Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.702Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.173 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.703Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.703Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.704Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.704Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.705Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.705Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.706Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.707Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.707Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.708Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.709Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.710Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.710Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.712Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.712Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.713Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.714Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.714Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.715Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.715Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.716Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.717Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.718Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.719Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.719Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.721Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.723Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.724Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.725Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.726Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.726Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.727Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.727Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.728Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.728Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.732Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.733Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.734Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.735Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.736Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.736Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.737Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.737Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.738Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.738Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.739Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.740Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.740Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.741Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.741Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.743Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.743Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.744Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.744Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.745Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.747Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.748Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.749Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.749Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.752Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.752Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.753Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.754Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.755Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.756Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.757Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.758Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.759Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.760Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.761Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.377 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.761Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.762Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.762Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.764Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.765Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.766Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.766Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.768Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.768Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.769Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.769Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.770Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.770Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.772Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.772Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.775Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.775Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.776Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.777Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.779Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.780Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.780Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.781Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.782Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.783Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.787Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.788Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.177 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.789Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.791Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.791Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.792Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.794Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.795Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.795Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.796Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.798Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.798Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.801Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.801Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.802Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.803Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.804Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.805Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.807Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.808Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.811Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.812Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.813Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.813Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.815Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.816Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.817Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.818Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.819Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.819Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.820Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.821Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.821Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.822Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.824Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.825Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.826Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.827Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.827Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.828Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.832Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.835Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.836Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.837Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.837Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.837Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.838Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.838Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.841Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.842Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.852Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.853Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.857Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.860Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.863Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.865Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.870Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.871Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.874Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.595 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.875Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.637 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.881Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.882Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.719 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.884Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 4.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.890Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.893Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.898Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.902Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 28.472 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.903Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.905Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.906Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.909Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.717 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.911Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.913Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.914Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.915Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.917Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.920Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.920Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.923Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.926Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.929Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.929Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.932Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.933Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.935Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.938Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.939Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.940Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.375 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.942Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.944Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.947Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.950Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.953Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.954Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.957Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.958Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.958Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.960Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.874 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.613 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.372 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.964Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.964Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.827 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.964Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.965Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.966Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.966Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.967Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.967Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.968Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.968Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.969Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.970Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.971Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.972Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.973Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.974Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.974Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.975Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.975Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.976Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.977Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.977Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.978Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.305 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.979Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.980Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.981Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.981Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.982Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.983Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.983Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.984Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.985Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.985Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.986Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.987Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.987Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.988Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.988Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.989Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.990Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.990Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.991Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.991Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.992Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.992Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.993Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.994Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.994Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.995Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.997Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:17.999Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.001Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.002Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.003Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.005Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.010Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.014Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.035 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.015Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.015Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.016Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.020Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.022Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.024Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.027Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.615 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.028Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.028Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.029Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.726 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.029Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.031Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.034Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.038Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.043Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.044Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.046Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.050Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.052Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.053Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.599 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.053Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.059Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.075Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.189 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.077Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.083Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.084Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.161 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.263 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.091Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 37.827 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.093Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.094Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.098Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 39.350 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.103Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 30.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.104Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 29.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.104Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.106Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.107Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.109Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 24.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.109Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.110Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.111Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.112Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.113Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.176 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.114Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.115Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.121Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.122Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.123Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.124Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.125Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.127Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.127Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.129Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.132Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.134Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.136Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.138Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.140Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.142Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.144Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.146Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.149Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.151Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.152Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.153Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.154Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.155Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.158Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.160Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.888 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.163Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.555 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.164Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.165Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.165Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.166Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.167Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.167Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.168Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.168Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.169Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.170Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.170Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.171Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.171Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.172Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.172Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.173Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.174Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.175Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.176Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.176Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.177Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.185Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.186Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.187Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.188Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.189Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.191Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.194Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.195Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.197Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.198Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.199Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.201Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.201Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.202Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.487 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.202Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.202Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.203Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.203Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.204Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.204Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.207Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.207Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.211Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.214Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.217Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.220Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.588 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.222Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.769 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.222Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.222Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.223Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.225Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.226Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.226Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.227Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.228Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.229Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.229Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.230Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.231Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.231Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.232Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.233Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.233Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.234Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.235Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.236Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.236Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.237Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.238Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.238Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.239Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.240Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.242Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.243Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.245Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.246Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.249Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.250Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.252Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.253Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.254Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.255Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.255Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.256Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.256Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.257Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.258Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.258Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.259Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.259Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.261Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.261Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.262Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.262Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.263Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.264Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.264Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.266Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.267Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.269Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.274Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.276Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.278Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.363 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.279Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.542 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.280Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.826 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.280Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.280Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.281Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.846 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.283Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.284Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.285Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.285Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.286Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.286Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.287Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.288Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.289Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.289Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.290Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.290Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.291Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.292Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.292Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.293Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.294Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.296Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.297Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.299Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.301Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.303Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.303Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.307Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.307Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.308Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.308Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.309Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.309Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.310Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.310Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.311Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.312Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.313Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.314Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.315Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.316Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.316Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.317Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.317Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.318Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.320Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.320Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.323Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.325Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.327Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.329Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.331Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.334Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.336Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.338Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.340Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.845 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.341Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.341Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.040 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.342Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.343Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.343Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.343Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.344Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.345Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.346Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.347Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.350Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.358Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.359Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.360Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.361Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.362Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.486 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.362Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.362Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.363Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.363Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.364Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.364Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.365Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.365Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.366Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.366Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.367Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.367Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.368Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.368Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.369Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.369Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.370Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.370Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.370Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.371Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.371Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.372Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.372Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.373Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.373Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.374Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.374Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.375Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.375Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.375Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.376Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.376Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.377Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.377Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.378Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.378Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.379Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.379Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.380Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.383Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.385Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.387Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.388Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.389Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.392Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.395Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.396Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.397Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.399Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.562 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.399Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.400Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.401Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.402Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.402Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.404Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.405Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.406Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.408Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.408Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.410Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.410Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.412Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.414Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.415Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.416Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.416Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.417Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.417Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.418Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.418Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.419Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.419Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.420Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.420Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.420Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.421Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.421Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.422Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.422Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.423Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.423Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.423Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.424Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.424Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.425Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.083 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.425Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.426Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.426Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.426Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.427Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.427Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.428Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.428Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.429Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.429Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.430Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.430Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.430Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.431Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.431Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.432Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.432Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.433Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.433Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.435Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.435Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.436Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.436Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.438Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.439Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.155 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.442Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.444Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.446Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.448Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.830 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.948 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.453Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.453Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.454Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.455Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.457Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.459Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.459Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.460Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.462Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.463Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.464Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.214 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.465Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.466Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.467Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.469Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.469Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.470Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.470Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.471Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.471Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.472Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.472Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.473Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.474Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.474Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.474Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.475Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.476Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.476Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.477Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.477Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.478Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.478Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.479Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.480Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.480Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.481Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.481Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.482Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.482Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.483Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.483Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.484Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.484Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.485Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.501Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.502Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.502Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.952 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.512Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.519Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.049 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.567Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.606 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.474 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.978 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.611Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.007 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.626Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.517 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.628Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.058 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.628Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.629Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.715 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.658Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.427 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.824 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.706Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.730Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.737Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.229 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.188 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.753Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.773Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.855 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.786Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.787Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.417 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.793Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.794Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.821Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.660 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.834Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.849Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.727 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.849Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.834 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.851Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.863Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.864Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.865Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.866Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.868Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.869Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.870Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.872Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.873Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.874Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.875Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.875Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.876Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.876Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.879Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.880Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.882Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.883Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.885Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.886Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.888Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.889Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.381 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.890Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.891Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.893Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.895Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.896Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.899Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.900Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.902Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.905Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.905Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.907Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.908Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.910Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.539 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.910Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.911Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.972 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.911Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.911Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.912Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.912Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.913Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.913Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.914Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.914Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.915Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.915Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.258 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.916Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.917Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.918Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.919Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.920Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.921Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.922Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.924Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.925Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.822 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.925Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.925Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.930Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.932Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.935Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.938Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.942Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.945Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.948Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.951Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.956Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.962Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 25.628 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.969Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.971Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.974Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.848 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 26.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.996Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 1.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:18.999Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.004Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 43.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.006Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 42.882 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.007Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.008Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.011Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.015Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.019Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 44.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.020Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.022Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.024Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.200 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.028Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.030Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.032Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.034Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.035Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.035Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.037Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.038Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.039Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.040Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.576 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.041Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.041Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.041Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.042Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.042Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.043Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.043Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.044Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.044Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.046Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.049Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.050Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.051Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.053Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.055Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.057Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.060Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.061Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.714 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.061Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.062Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.063Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.064Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.065Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.066Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.068Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.068Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.354 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.069Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.069Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.070Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.070Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.071Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.072Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.072Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.074Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.075Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.077Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.077Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.078Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.080Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.083Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.086Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.088Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.089Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.089Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.090Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.090Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.092Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.093Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.095Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.096Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.097Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.960 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.097Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.098Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.098Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.099Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.099Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.100Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.108Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.108Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.109Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.948 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.109Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.111Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.111Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.112Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.115Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.116Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.118Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.695 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.118Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.121Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.128Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.130Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.133Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.134Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.136Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.138Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.139Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.539 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.141Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.141Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.142Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.143Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.144Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.168 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.147Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.150Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.151Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.154Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.155Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.210 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.158Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.158Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.159Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.159Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.166Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.725 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.166Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.171Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.174Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.175Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.175Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.176Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.177Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.177Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.178Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.184Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.923 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.551 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.187Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.189Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.919 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.195Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.197Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.198Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.200Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.200Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.207Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.687 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.208Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.208Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.212Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.212Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.214Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.215Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.216Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.218Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.218Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.218Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.219Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.219Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.220Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.223Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.224Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.227Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.234Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.235Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.237Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.239Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.241Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.243Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.797 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.245Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.245Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.246Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.247Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.248Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.582 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.249Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.250Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.251Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.253Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.945 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.257Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.257Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.262Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.263Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.266Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.267Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.268Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.270Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.271Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.275Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.280Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.282Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.284Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.175 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.296Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.298Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.301Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.304Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 20.409 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 21.207 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.310Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.311Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.314Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.316Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.318Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.322Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.323Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.324Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.325Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.000 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.326Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.202 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.329Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.333Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.333Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.334Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.336Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.342Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.347Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.352Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.355Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.356Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.358Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.685 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.359Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.997 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.359Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.364Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.367Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.369Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.690 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.371Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.373Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.375Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.379Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.381Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.382Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.382Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.383Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.388Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.390Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.394Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.398Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.404Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.027 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.411Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.411Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.412Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.416Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.187 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.417Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.421Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.423Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.426Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.429Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.430Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.380 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.432Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.433Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.165 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.449Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.451Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.250 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.458Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.459Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.462Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.463Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.464Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.465Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.465Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.466Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.471Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.474Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.476Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.478Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.267 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.705 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.486Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.805 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.487Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.488Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.491Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.493Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.496Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.497Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.501Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.501Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.503Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.510Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.513Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.221 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.515Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.515Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.522Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.522Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.523Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.523Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.524Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.524Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.526Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.528Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.534Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.539Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.542Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.544Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.545Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.253 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.546Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.546Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.548Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.553Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.555Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.556Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.556Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.558Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.563Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.564Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.565Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.566Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.566Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.058 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.567Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.570Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.571Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.587Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.591Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.593Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.601Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.604Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.606Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.278 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.608Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.608Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.612Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.614Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.951 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.619Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.620Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.621Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.623Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.624Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.625Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.625Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.626Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.626Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.627Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.627Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.627Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.654Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.520 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.657Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.657Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.659Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.663Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.666Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.667Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.669Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.670Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.671Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.673Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.674Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.675Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.428 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.676Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.676Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.680Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.682Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.682Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.775 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.684Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.684Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.685Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.686Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.689Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.186 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.692Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.693Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.696Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.698Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.699Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.701Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.704Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.706Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.193 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.710Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.713Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.717Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.513 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.717Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.720Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.954 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.721Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.721Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.723Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.724Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 17.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.724Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.726Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.726Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.730Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.643 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.732Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.286 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.733Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.733Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.734Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.735Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.736Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.740Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.741Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.746Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.747Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.751Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.753Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.753Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.754Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.760Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.632 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.425 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.767Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.400 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.771Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.772Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 4.528 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.779Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.779Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.782Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.782Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.786Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.790Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.792Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.794Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.797Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.798Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.799Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.800Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.803Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.806Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.810Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.813Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.819Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.846 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.820Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.822Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.830Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.738 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.830Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.832Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.834Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.835Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.836Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.837Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.839Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.840Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.841Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.842Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.852Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.854Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.855Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.857Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.863Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.867Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.899 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.868Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.869Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.871Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.878Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.883Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.885Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.071 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.885Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.886Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.896Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.896Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.897Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.904Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.908Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.910Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.911Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.912Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.914Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.915Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.917Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.919Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.921Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.922Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.577 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.923Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.925Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.926Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.928Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.929Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.930Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.931Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.934Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.935Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.937Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.925 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.941Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.598 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.941Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.942Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.943Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.943Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.944Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.944Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.950Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.951Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.167 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.960Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.961Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.961Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.962Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.973Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.974Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.975Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.977Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.983Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.984Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:19.986Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.259 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.003Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.006Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.009Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.014Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.023Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.035Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.045Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 53.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.047Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.047Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 52.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.047Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.050Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.054Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.132 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.056Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 38.823 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.057Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 27.933 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.058Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.162 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.058Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 31.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.059Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.060Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.060Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.061Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.061Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.062Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.062Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.063Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.063Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.064Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.069Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.070Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.070Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.085 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.071Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.078Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.080Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.082Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.084Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.086Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.087Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.089Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.091Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.153 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.094Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.480 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.094Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.094Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.096Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.098Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.269 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.099Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.100Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.102Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.104Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.107Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.109Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.626 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.111Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.884 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.112Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.114Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.117Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.117Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.118Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.119Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.120Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.120Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.121Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.125Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.135Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.136Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.136Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.138Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.140Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.146Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.905 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.147Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.147Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.148Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.148Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.149Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.149Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.152Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.152Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.155Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.159Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.164Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.165Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.166Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.169Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.170Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.170Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.172Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.178Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.180Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.186Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.191Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.193Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.509 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.200Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.201Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.122 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.201Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.204Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.205Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.206Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.208Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.211Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.213Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.215Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.217Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.950 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.217Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.218Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.219Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.220Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.221Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.222Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.222Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.228Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.232Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.232Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.233Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.240Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.243Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.246Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.248Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.252Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.785 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.253Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.376 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.254Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.254Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.255Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.258Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.260Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.264Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.266Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.268Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.269Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.297 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.270Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.271Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.703 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.272Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.273Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.274Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.276Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.280Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.280Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.281Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.087 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.281Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.282Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.283Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.283Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.284Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.150 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.287Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.288Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.292Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.299Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.302Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.305Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.953 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.307Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.676 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.308Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.309Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.771 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.311Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.312Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.319Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.848 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.320Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.749 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.321Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.321Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.322Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.322Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.323Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.169 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.326Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.328Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.330Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.332Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.134 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.338Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.339Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.339Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.340Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.090 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.340Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.341Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.341Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.343Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.351Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.353Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.355Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.356Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.816 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.360Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.361Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.536 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.361Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.365Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.373Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.375Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.377Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.379Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.860 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.380Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.381Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.748 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.381Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.382Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.384Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.385Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 18.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.385Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.386Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.387Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.387Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.388Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.388Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.396Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.398Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.413Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.414Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.414Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.415Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.418Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.420Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.431Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.431Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.432Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.433Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.434Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.439Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.440Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.451Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.452Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.452Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.453Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.109 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.459Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.461Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.466Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.514 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.467Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.467Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.471Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.476Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.478Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.488Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.489Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.257 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.490Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.491Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.454 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.491Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.491Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.495Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.495Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.496Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.496Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.497Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.500Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.502Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.504Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.505Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.922 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.517Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.178 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.518Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.518Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.520Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.213 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.521Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.522Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.523Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.524Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.526Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.527Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.528Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.528Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.530Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.535Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.536Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.539Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.294 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.544Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.208 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.544Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.547Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.551Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.554Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.558Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.559Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.564Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.139 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.567Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.570Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.889 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.571Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.572Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.978 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.572Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.576Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.577Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.578Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.579Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.580Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.583Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.584Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.590Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.851 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.590Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.593Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.593Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.593Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.594Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.595Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.595Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.597Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.597Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.600Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.603Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.604Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.605Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.608Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.611Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.612Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.617Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.619Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.624Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.751 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.642Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.197 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.643Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.644Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.645Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.645Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.646Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.649Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.653Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.654Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.129 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.659Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.659Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.663Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.664Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.672Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.674Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.125 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.676Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.677Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 15.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.815 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.683Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.684Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.685Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.687Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.693Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.695Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.696Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.697Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.130 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.697Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.701Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.704Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.093 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.704Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.707Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.714Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.715Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.719Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.112 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.721Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.721Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.722Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.723Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.723Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.723Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.724Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.729Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.731Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.733Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.110 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.878 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.739Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.025 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.739Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.740Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.742Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.745Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.639 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.747Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.041 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.749Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.935 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.749Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.750Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.751Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.752Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.019 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.752Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.755Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.756Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.757Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.760Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.761Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.763Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.763Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.764Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.089 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.764Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.774Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.108 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.783Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.156 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.066 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.785Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.740 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.786Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.119 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.786Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.788Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.135 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.792Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.794Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.797Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.799Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.799Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.800Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.146 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.803Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.805Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.807Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.809Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 16.289 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.810Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.145 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.811Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 13.707 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.811Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.152 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.812Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.814Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.815Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.097 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.816Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.100 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.816Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.824Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.827Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.121 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.828Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.829Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.885 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.836Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.836Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.837Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.838Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.117 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.839Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.302 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.843Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.143 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.845Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.157 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.848Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.850Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.098 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.851Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.852Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.854Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.856Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.966 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.871 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.862Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.864Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.865Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.865Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.868Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.094 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.869Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.869Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.870Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.870Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.871Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.872Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.096 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.872Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.873Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.144 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.875Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.878Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.095 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.879Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.218 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 5.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.888Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.050 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.492 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.437 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.917Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.918Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.084 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 12.258 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.201 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.947Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.977 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.948Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.734 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.967Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 14.353 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.516 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.968Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.772 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.802 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.985Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:20.986Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.341 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:21.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:21.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.501 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:21.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:21.000Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 10.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:21.001Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.863 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:38:21.002Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=undefined HTTP/1.1" 200 602 15.055 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:41:59.068Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 22.678 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:41:59.070Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 3.286 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:42:01.675Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 200 1489190 3.965 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:42:01.681Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 1.040 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:42:01.682Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 200 374512 1.527 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:42:01.683Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 15.748 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:44:42.218Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.723 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:44:42.222Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.496 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:44:42.225Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 10.610 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:44:42.330Z' +} +{ + operationTime: Timestamp { _bsontype: 'Timestamp', low_: 4, high_: 1606563882 }, + ok: 0, + code: 2, + codeName: 'BadValue', + '$clusterTime': { + clusterTime: Timestamp { _bsontype: 'Timestamp', low_: 4, high_: 1606563882 }, + signature: { + hash: Binary { + _bsontype: 'Binary', + sub_type: 0, + position: 20, + buffer: + }, + keyId: 0 + } + }, + name: 'MongoError', + level: 'warn', + timestamp: '2020-11-28T11:44:42.337Z' +} +{ + message: 'MongoError: unknown operator: $or\n' + + ' at MessageStream.messageHandler (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/connection.js:268:20)\n' + + ' at MessageStream.emit (events.js:314:20)\n' + + ' at processIncomingData (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n' + + ' at MessageStream._write (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n' + + ' at doWrite (_stream_writable.js:403:12)\n' + + ' at writeOrBuffer (_stream_writable.js:387:5)\n' + + ' at MessageStream.Writable.write (_stream_writable.js:318:11)\n' + + ' at Socket.ondata (_stream_readable.js:719:22)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at addChunk (_stream_readable.js:298:12)\n' + + ' at readableAddChunk (_stream_readable.js:273:9)\n' + + ' at Socket.Readable.push (_stream_readable.js:214:10)\n' + + ' at TCP.onStreamRead (internal/stream_base_commons.js:188:23)', + level: 'error', + timestamp: '2020-11-28T11:44:42.341Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=undefined HTTP/1.1" 500 192 30.498 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:44:42.373Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 4.466 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:45:26.791Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.915 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:45:26.801Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.882 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:45:26.806Z' +} +{ + operationTime: Timestamp { _bsontype: 'Timestamp', low_: 3, high_: 1606563926 }, + ok: 0, + code: 2, + codeName: 'BadValue', + '$clusterTime': { + clusterTime: Timestamp { _bsontype: 'Timestamp', low_: 3, high_: 1606563926 }, + signature: { + hash: Binary { + _bsontype: 'Binary', + sub_type: 0, + position: 20, + buffer: + }, + keyId: 0 + } + }, + name: 'MongoError', + level: 'warn', + timestamp: '2020-11-28T11:45:26.926Z' +} +{ + message: 'MongoError: unknown operator: $or\n' + + ' at MessageStream.messageHandler (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/connection.js:268:20)\n' + + ' at MessageStream.emit (events.js:314:20)\n' + + ' at processIncomingData (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n' + + ' at MessageStream._write (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n' + + ' at doWrite (_stream_writable.js:403:12)\n' + + ' at writeOrBuffer (_stream_writable.js:387:5)\n' + + ' at MessageStream.Writable.write (_stream_writable.js:318:11)\n' + + ' at Socket.ondata (_stream_readable.js:719:22)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at addChunk (_stream_readable.js:298:12)\n' + + ' at readableAddChunk (_stream_readable.js:273:9)\n' + + ' at Socket.Readable.push (_stream_readable.js:214:10)\n' + + ' at TCP.onStreamRead (internal/stream_base_commons.js:188:23)', + level: 'error', + timestamp: '2020-11-28T11:45:26.928Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 19.812 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:45:26.934Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=undefined HTTP/1.1" 500 192 18.724 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:45:26.937Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.155 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:45:33.712Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.130 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:45:33.725Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.510 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:45:33.733Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 6.507 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:45:33.832Z' +} +{ + operationTime: Timestamp { _bsontype: 'Timestamp', low_: 4, high_: 1606563933 }, + ok: 0, + code: 2, + codeName: 'BadValue', + '$clusterTime': { + clusterTime: Timestamp { _bsontype: 'Timestamp', low_: 4, high_: 1606563933 }, + signature: { + hash: Binary { + _bsontype: 'Binary', + sub_type: 0, + position: 20, + buffer: + }, + keyId: 0 + } + }, + name: 'MongoError', + level: 'warn', + timestamp: '2020-11-28T11:45:33.872Z' +} +{ + message: 'MongoError: unknown operator: $or\n' + + ' at MessageStream.messageHandler (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/connection.js:268:20)\n' + + ' at MessageStream.emit (events.js:314:20)\n' + + ' at processIncomingData (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n' + + ' at MessageStream._write (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n' + + ' at doWrite (_stream_writable.js:403:12)\n' + + ' at writeOrBuffer (_stream_writable.js:387:5)\n' + + ' at MessageStream.Writable.write (_stream_writable.js:318:11)\n' + + ' at Socket.ondata (_stream_readable.js:719:22)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at addChunk (_stream_readable.js:298:12)\n' + + ' at readableAddChunk (_stream_readable.js:273:9)\n' + + ' at Socket.Readable.push (_stream_readable.js:214:10)\n' + + ' at TCP.onStreamRead (internal/stream_base_commons.js:188:23)', + level: 'error', + timestamp: '2020-11-28T11:45:33.876Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=undefined HTTP/1.1" 500 192 17.887 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:45:33.882Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 26.285 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:46:57.900Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 10.035 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:46:57.902Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 14.932 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:46:57.903Z' +} +{ + operationTime: Timestamp { _bsontype: 'Timestamp', low_: 3, high_: 1606564017 }, + ok: 0, + code: 2, + codeName: 'BadValue', + '$clusterTime': { + clusterTime: Timestamp { _bsontype: 'Timestamp', low_: 3, high_: 1606564017 }, + signature: { + hash: Binary { + _bsontype: 'Binary', + sub_type: 0, + position: 20, + buffer: + }, + keyId: 0 + } + }, + name: 'MongoError', + level: 'warn', + timestamp: '2020-11-28T11:46:58.184Z' +} +{ + message: 'MongoError: unknown operator: $or\n' + + ' at MessageStream.messageHandler (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/connection.js:268:20)\n' + + ' at MessageStream.emit (events.js:314:20)\n' + + ' at processIncomingData (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n' + + ' at MessageStream._write (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n' + + ' at doWrite (_stream_writable.js:403:12)\n' + + ' at writeOrBuffer (_stream_writable.js:387:5)\n' + + ' at MessageStream.Writable.write (_stream_writable.js:318:11)\n' + + ' at Socket.ondata (_stream_readable.js:719:22)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at addChunk (_stream_readable.js:298:12)\n' + + ' at readableAddChunk (_stream_readable.js:273:9)\n' + + ' at Socket.Readable.push (_stream_readable.js:214:10)\n' + + ' at TCP.onStreamRead (internal/stream_base_commons.js:188:23)', + level: 'error', + timestamp: '2020-11-28T11:46:58.186Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 12.835 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:46:58.190Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=undefined HTTP/1.1" 500 192 15.691 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:46:58.191Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 14.679 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:49:07.451Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.224 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:49:07.452Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 6.058 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:49:07.458Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 11.226 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:49:07.563Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=undefined HTTP/1.1" 200 602 13.729 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:49:07.569Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.001 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:49:08.143Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 4.264 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:52:21.520Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.441 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:52:21.538Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 6.058 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:52:21.544Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 10.355 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:52:21.648Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=undefined HTTP/1.1" 304 - 17.808 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:52:21.654Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.066 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:52:22.220Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=5fb8fbabd1e07e9df843597d HTTP/1.1" 200 602 7.719 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:52:25.458Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 8.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:53:12.721Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 9.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:54:29.027Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 8.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:55:09.569Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 8.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T11:56:32.683Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 113.406 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:57:25.946Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.867 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:00:53.439Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.107 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:00:53.456Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.395 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:00:53.459Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 5.810 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:00:53.547Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=undefined HTTP/1.1" 304 - 8.070 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:00:53.590Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.849 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:00:53.767Z' +} +{ + message: '::1 "POST /user/createOffer HTTP/1.1" 200 115 36.056 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:01:17.163Z' +} +{ + message: '::1 "POST /user/createOffer HTTP/1.1" 200 115 25.759 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:02:01.906Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 84.139 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:02:31.073Z' +} +{ + message: '400 - There is no enough currency in acceptor wallet or acceptor does not have the currency', + level: 'warn', + timestamp: '2020-11-28T12:02:37.711Z' +} +{ + message: '::1 "GET /user/acceptOffer?offerId=20b90ac4-33ba-4268-a9a8-7d1770da3a9d HTTP/1.1" 400 299 18.414 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:02:37.714Z' +} +{ + message: '::1 "GET /user/acceptOffer?offerId=0ed751f7-5dcb-4a37-b0a1-f93ba6e88404 HTTP/1.1" 200 116 46.164 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:02:56.636Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.741 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:01.416Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.510 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:01.430Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.544 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:01.434Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 9.159 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:01.537Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=undefined HTTP/1.1" 200 878 7.559 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:01.565Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.939 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:02.221Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.399 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:05.623Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.412 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:05.637Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 6.916 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:08.310Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.283 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:14.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 878 10.199 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:14.130Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 7.518 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:16.059Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 6.757 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:18.886Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.308 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:22.520Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.928 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:22.535Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 878 8.130 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:24.976Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.220 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:28.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.242 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:28.632Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.592 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:31.678Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.374 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:31.691Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.119 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:31.697Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=undefined HTTP/1.1" 304 - 9.529 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:31.872Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 10.029 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:31.873Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.176 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:32.522Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=5fb8fbabd1e07e9df843597d HTTP/1.1" 200 878 7.337 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:03:43.991Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 26.829 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:05:12.835Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curId=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 20.955 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:05:49.799Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 200 602 10.524 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:06:30.880Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.513 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:06:54.964Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.173 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:06:54.975Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.425 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:06:54.986Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 10.501 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:06:55.081Z' +} +{ + messageFormat: undefined, + stringValue: '"undefined"', + kind: 'ObjectId', + value: 'undefined', + path: 'curGivenId', + reason: Error: Argument passed in must be a single String of 12 bytes or a string of 24 hex characters + at new ObjectID (/home/hamid/projects/exchange/server/node_modules/bson/lib/bson/objectid.js:59:11) + at castObjectId (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast/objectid.js:25:12) + at ObjectId.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schema/objectid.js:267:12) + at ObjectId.SchemaType.applySetters (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1075:12) + at ObjectId.SchemaType._castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1510:15) + at ObjectId.SchemaType.castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1500:15) + at ObjectId.SchemaType.castForQueryWrapper (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1477:20) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:331:32) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at model.Query.Query.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4781:12) + at model.Query.Query._castConditions (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1873:10) + at model.Query. (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1900:8) + at model.Query._wrappedThunk [as _find] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/query/wrapThunk.js:16:8) + at /home/hamid/projects/exchange/server/node_modules/kareem/index.js:369:33 + at processTicksAndRejections (internal/process/task_queues.js:79:11), + level: 'warn', + timestamp: '2020-11-28T12:06:55.086Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:55:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:06:55.088Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 15.011 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:06:55.091Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.653 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:06:55.233Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 12.939 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:08:40.649Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 8.935 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:08:40.687Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 10.206 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:08:40.689Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 10.489 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:08:40.763Z' +} +{ + messageFormat: undefined, + stringValue: '"undefined"', + kind: 'ObjectId', + value: 'undefined', + path: 'curGivenId', + reason: Error: Argument passed in must be a single String of 12 bytes or a string of 24 hex characters + at new ObjectID (/home/hamid/projects/exchange/server/node_modules/bson/lib/bson/objectid.js:59:11) + at castObjectId (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast/objectid.js:25:12) + at ObjectId.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schema/objectid.js:267:12) + at ObjectId.SchemaType.applySetters (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1075:12) + at ObjectId.SchemaType._castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1510:15) + at ObjectId.SchemaType.castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1500:15) + at ObjectId.SchemaType.castForQueryWrapper (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1477:20) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:331:32) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at model.Query.Query.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4781:12) + at model.Query.Query._castConditions (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1873:10) + at model.Query. (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1900:8) + at model.Query._wrappedThunk [as _find] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/query/wrapThunk.js:16:8) + at /home/hamid/projects/exchange/server/node_modules/kareem/index.js:369:33 + at processTicksAndRejections (internal/process/task_queues.js:79:11), + level: 'warn', + timestamp: '2020-11-28T12:08:40.809Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:56:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:08:40.813Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 22.298 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:08:40.822Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 14.943 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:10:01.786Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.868 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:10:01.790Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 8.429 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:10:01.793Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 7.083 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:10:01.890Z' +} +{ + messageFormat: undefined, + stringValue: '"undefined"', + kind: 'ObjectId', + value: 'undefined', + path: 'curGivenId', + reason: Error: Argument passed in must be a single String of 12 bytes or a string of 24 hex characters + at new ObjectID (/home/hamid/projects/exchange/server/node_modules/bson/lib/bson/objectid.js:59:11) + at castObjectId (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast/objectid.js:25:12) + at ObjectId.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schema/objectid.js:267:12) + at ObjectId.SchemaType.applySetters (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1075:12) + at ObjectId.SchemaType._castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1510:15) + at ObjectId.SchemaType.castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1500:15) + at ObjectId.SchemaType.castForQueryWrapper (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1477:20) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:331:32) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at model.Query.Query.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4781:12) + at model.Query.Query._castConditions (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1873:10) + at model.Query. (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1900:8) + at model.Query._wrappedThunk [as _find] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/query/wrapThunk.js:16:8) + at /home/hamid/projects/exchange/server/node_modules/kareem/index.js:369:33 + at processTicksAndRejections (internal/process/task_queues.js:79:11), + level: 'warn', + timestamp: '2020-11-28T12:10:01.923Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:56:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:10:01.928Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 15.909 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:10:01.932Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 16.697 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:11:31.726Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.980 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:11:31.730Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 13.414 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:11:31.731Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 7.921 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:11:31.826Z' +} +{ + messageFormat: undefined, + stringValue: '"undefined"', + kind: 'ObjectId', + value: 'undefined', + path: 'curGivenId', + reason: Error: Argument passed in must be a single String of 12 bytes or a string of 24 hex characters + at new ObjectID (/home/hamid/projects/exchange/server/node_modules/bson/lib/bson/objectid.js:59:11) + at castObjectId (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast/objectid.js:25:12) + at ObjectId.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schema/objectid.js:267:12) + at ObjectId.SchemaType.applySetters (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1075:12) + at ObjectId.SchemaType._castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1510:15) + at ObjectId.SchemaType.castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1500:15) + at ObjectId.SchemaType.castForQueryWrapper (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1477:20) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:331:32) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at model.Query.Query.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4781:12) + at model.Query.Query._castConditions (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1873:10) + at model.Query. (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1900:8) + at model.Query._wrappedThunk [as _find] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/query/wrapThunk.js:16:8) + at /home/hamid/projects/exchange/server/node_modules/kareem/index.js:369:33 + at processTicksAndRejections (internal/process/task_queues.js:79:11), + level: 'warn', + timestamp: '2020-11-28T12:11:31.874Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:56:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:11:31.876Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 12.941 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:11:31.881Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 13.415 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:12:31.050Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 10.240 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:12:31.059Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.982 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:12:31.061Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 11.844 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:12:31.163Z' +} +{ + messageFormat: undefined, + stringValue: '"undefined"', + kind: 'ObjectId', + value: 'undefined', + path: 'curGivenId', + reason: Error: Argument passed in must be a single String of 12 bytes or a string of 24 hex characters + at new ObjectID (/home/hamid/projects/exchange/server/node_modules/bson/lib/bson/objectid.js:59:11) + at castObjectId (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast/objectid.js:25:12) + at ObjectId.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schema/objectid.js:267:12) + at ObjectId.SchemaType.applySetters (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1075:12) + at ObjectId.SchemaType._castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1510:15) + at ObjectId.SchemaType.castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1500:15) + at ObjectId.SchemaType.castForQueryWrapper (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1477:20) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:331:32) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at model.Query.Query.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4781:12) + at model.Query.Query._castConditions (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1873:10) + at model.Query. (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1900:8) + at model.Query._wrappedThunk [as _find] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/query/wrapThunk.js:16:8) + at /home/hamid/projects/exchange/server/node_modules/kareem/index.js:369:33 + at processTicksAndRejections (internal/process/task_queues.js:79:11), + level: 'warn', + timestamp: '2020-11-28T12:12:31.172Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:56:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:12:31.176Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 12.721 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:12:31.181Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 25.244 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:13:17.127Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 12.925 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:13:17.139Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.782 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:13:17.140Z' +} +{ + messageFormat: undefined, + stringValue: '"undefined"', + kind: 'ObjectId', + value: 'undefined', + path: 'curGivenId', + reason: Error: Argument passed in must be a single String of 12 bytes or a string of 24 hex characters + at new ObjectID (/home/hamid/projects/exchange/server/node_modules/bson/lib/bson/objectid.js:59:11) + at castObjectId (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast/objectid.js:25:12) + at ObjectId.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schema/objectid.js:267:12) + at ObjectId.SchemaType.applySetters (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1075:12) + at ObjectId.SchemaType._castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1510:15) + at ObjectId.SchemaType.castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1500:15) + at ObjectId.SchemaType.castForQueryWrapper (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1477:20) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:331:32) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at model.Query.Query.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4781:12) + at model.Query.Query._castConditions (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1873:10) + at model.Query. (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1900:8) + at model.Query._wrappedThunk [as _find] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/query/wrapThunk.js:16:8) + at /home/hamid/projects/exchange/server/node_modules/kareem/index.js:369:33 + at processTicksAndRejections (internal/process/task_queues.js:79:11), + level: 'warn', + timestamp: '2020-11-28T12:13:17.311Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:57:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:13:17.314Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 14.083 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:13:17.321Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 20.266 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:13:17.322Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 13.460 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:14:15.390Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 6.313 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:14:15.410Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 14.172 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:14:15.411Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 8.805 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:14:15.500Z' +} +{ + messageFormat: undefined, + stringValue: '"undefined"', + kind: 'ObjectId', + value: 'undefined', + path: 'curGivenId', + reason: Error: Argument passed in must be a single String of 12 bytes or a string of 24 hex characters + at new ObjectID (/home/hamid/projects/exchange/server/node_modules/bson/lib/bson/objectid.js:59:11) + at castObjectId (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast/objectid.js:25:12) + at ObjectId.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schema/objectid.js:267:12) + at ObjectId.SchemaType.applySetters (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1075:12) + at ObjectId.SchemaType._castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1510:15) + at ObjectId.SchemaType.castForQuery (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1500:15) + at ObjectId.SchemaType.castForQueryWrapper (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1477:20) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:331:32) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast.js:74:18) + at model.Query.Query.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4781:12) + at model.Query.Query._castConditions (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1873:10) + at model.Query. (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:1900:8) + at model.Query._wrappedThunk [as _find] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/query/wrapThunk.js:16:8) + at /home/hamid/projects/exchange/server/node_modules/kareem/index.js:369:33 + at processTicksAndRejections (internal/process/task_queues.js:79:11), + level: 'warn', + timestamp: '2020-11-28T12:14:15.505Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:57:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:14:15.506Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 9.555 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:14:15.511Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 13.253 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:07.133Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 7.632 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:07.144Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 12.955 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:07.147Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 8.878 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:07.246Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 878 21.156 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:07.261Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.982 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:07.826Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 15.320 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:12.203Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbdad1e07e9df843597e HTTP/1.1" 200 314 11.599 "http://localhost:3000/charts?cur=ETH" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:21.136Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 8.709 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:32.015Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.908 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:34.205Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.405 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:34.218Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.272 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:34.222Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 12.355 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:34.313Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 10.981 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:34.316Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.545 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:34.474Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.593 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:41.849Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 19.103 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:41.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 8.129 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:43.912Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 9.506 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:46.037Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.257 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:47.386Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.831 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:47.397Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.920 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:49.409Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.266 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:51.137Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.257 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:53.231Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 7.468 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:53.241Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 9.288 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:55.405Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 7.856 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:57.628Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.439 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:59.543Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.372 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:17:59.554Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.245 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:18:04.814Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.748 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:18:04.824Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 878 13.346 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:18:07.314Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.230 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:18:48.663Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.755 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:18:48.673Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.856 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:25.080Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.955 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:25.091Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.431 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:25.096Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 51.982 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:25.253Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 39.886 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:25.258Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.773 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:25.385Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.217 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:30.063Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.549 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:30.076Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 8.864 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:32.102Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 878 10.671 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:34.439Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.246 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:36.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 8.115 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:36.187Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.586 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:20:37.781Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.298 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:23:22.963Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 6.867 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:23:22.972Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.812 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:23:57.523Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.617 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:23:57.544Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.593 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:23:57.548Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 27.098 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:23:57.663Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 29.908 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:23:57.665Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.880 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:23:57.800Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.251 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:00.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 6.920 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:00.620Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.999 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:02.540Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 10.778 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:04.148Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 8.147 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:05.400Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.280 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:07.273Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 6.632 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:07.282Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 6.769 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:09.622Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 9.096 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:10.987Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.291 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:12.391Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 9.171 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:12.407Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 878 10.597 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:15.370Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 878 11.146 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:16.943Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.287 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:19.853Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 878 7.510 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:24:19.863Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 13.628 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:11.609Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.522 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:11.618Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 9.953 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:11.619Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 23.771 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:11.741Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 39.382 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:11.742Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.023 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:11.854Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.459 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:14.150Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 596 27.809 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:14.181Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 18.280 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:17.375Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.301 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:20.746Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 8.125 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:20.759Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.984 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:23.044Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 11.190 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:25.088Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.264 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:27.091Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 10.272 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:26:27.106Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.843 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:05.575Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.765 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:05.585Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.955 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:05.590Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 29.366 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:05.711Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 31.569 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:05.713Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.227 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:05.816Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.811 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:21.418Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.027 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:21.428Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.831 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:21.428Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 10.173 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:21.536Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 9.006 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:21.537Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.531 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:21.673Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.346 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:41.995Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 11.031 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:42.009Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 7.909 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:43.792Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 10.131 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:45.179Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 10.365 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:29:46.792Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 12.994 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:28.918Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 10.632 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:28.927Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 11.112 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:28.928Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 28.084 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:29.071Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 40.346 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:29.075Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.490 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:29.173Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.363 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:31.719Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 596 30.460 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:31.754Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 11.347 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:35.370Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.262 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:37.698Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 8.854 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:37.710Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 878 11.412 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:35:41.144Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.969 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:30.881Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.437 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:30.894Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.943 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:30.898Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 53.159 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:31.071Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 46.402 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:31.080Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.031 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:31.180Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.476 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:36.411Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 596 9.255 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:36.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.934 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:37.980Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.119 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:40.396Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.321 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:42.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 9.471 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:42.903Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 596 7.369 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:44.686Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 320 11.016 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:46.903Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.257 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:51.210Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 596 7.841 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:51.221Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 6.946 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:52.633Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 39 7.450 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:54.115Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 314 8.016 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:56.146Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /service/filterOnTxs HTTP/1.1" 204 0 0.352 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:58.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /service/filterOnTxs HTTP/1.1" 200 602 9.053 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:37:58.333Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 7.611 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:38:02.396Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 8.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:45:46.990Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.615 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:45:53.439Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.259 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:45:53.450Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 8.221 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:45:53.454Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 23.042 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:45:53.569Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 22.080 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:45:53.570Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.389 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:45:53.682Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 12.160 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:45:56.691Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 11.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:46:40.875Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 6.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:46:49.357Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 200 602 9.538 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:47:29.704Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 10.016 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:48:12.333Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 200 602 10.667 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:48:34.533Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 200 602 9.830 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:49:45.534Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 6.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:49:57.885Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 6.386 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:50:11.360Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 4.261 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:56:35.976Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.960 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:56:35.983Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 2.785 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:56:35.995Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 8.141 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:56:36.093Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 878 13.633 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:56:36.098Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.259 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:56:36.221Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 18.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:57:00.145Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 9.646 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:57:09.548Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 10.690 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T12:57:09.549Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-28T13:03:40.740Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 401 186 6.793 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T13:03:40.744Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 15.850 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T13:03:40.761Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 11.203 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T13:15:15.426Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fb8fbabd1e07e9df843597d HTTP/1.1" 304 - 8.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-28T15:52:38.921Z' +} +{ + message: '::1 "GET /admin/register HTTP/1.1" 404 153 20.556 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:15:46.022Z' +} +{ + message: '::1 "POST /admin/register HTTP/1.1" 200 119 234.539 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:15:52.371Z' +} +{ + message: '::1 "GET /admin/login HTTP/1.1" 404 150 5.534 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:16:35.941Z' +} +{ + message: '::1 "POST /admin/login HTTP/1.1" 200 124 85.005 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:16:39.743Z' +} +{ + message: '::1 "POST /admin/addCurrency HTTP/1.1" 200 92 11.860 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:17:14.392Z' +} +{ + message: '422 - currency name info is not valid!', + level: 'warn', + timestamp: '2020-11-29T08:18:43.309Z' +} +{ + message: '::1 "POST /admin/addCurrency HTTP/1.1" 422 179 5.892 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:18:43.311Z' +} +{ + message: '::1 "POST /admin/addCurrency HTTP/1.1" 200 92 7.752 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:18:52.910Z' +} +{ + message: '::1 "POST /admin/addCurrency HTTP/1.1" 200 92 8.754 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:19:22.827Z' +} +{ + message: '::1 "POST /admin/addCurrency HTTP/1.1" 200 92 8.199 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:19:47.125Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 514 10.604 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:20:50.773Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 39 9.202 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:20:50.776Z' +} +{ + errno: -2, + syscall: 'open', + code: 'ENOENT', + path: './images/coins/golden_bitcoin.png', + level: 'warn', + timestamp: '2020-11-29T08:20:50.851Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:387:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)', + level: 'error', + timestamp: '2020-11-29T08:20:50.852Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 500 192 6.342 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:20:50.855Z' +} +{ + errno: -2, + syscall: 'open', + code: 'ENOENT', + path: './images/coins/golden_bitcoin.png', + level: 'warn', + timestamp: '2020-11-29T08:21:33.740Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:387:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)', + level: 'error', + timestamp: '2020-11-29T08:21:33.740Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 500 192 3.899 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:21:33.743Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 8.955 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:21:33.849Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 513 11.715 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:21:33.850Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 3.415 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:21:33.902Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.660 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:22:09.883Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 544 10.345 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:22:09.995Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 7.100 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:22:09.997Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth1.jpg HTTP/1.1" 200 137631 2.925 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:22:10.033Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.848 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:22:29.563Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth1.jpg HTTP/1.1" 304 - 3.633 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:22:29.569Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 543 8.713 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:22:29.683Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 10.385 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:22:29.685Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 200 1489190 5.460 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:22:29.718Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.598 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:23:20.470Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.515 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:23:20.478Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 5.505 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:23:20.580Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 605 8.371 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:23:20.601Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 2.768 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:23:20.719Z' +} +{ + message: '422 - Username address is required!', + level: 'warn', + timestamp: '2020-11-29T08:24:08.098Z' +} +{ + message: '::1 "POST /auth/register HTTP/1.1" 422 192 10.105 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:24:08.101Z' +} +{ + message: '::1 "POST /auth/register HTTP/1.1" 200 148 88.806 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:24:17.672Z' +} +{ + message: '422 - Username address is required!', + level: 'warn', + timestamp: '2020-11-29T08:24:45.665Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 422 192 3.767 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:24:45.667Z' +} +{ + message: '400 - The email is not verified!', + level: 'warn', + timestamp: '2020-11-29T08:24:52.450Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 400 220 7.355 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:24:52.453Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 82.128 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:25:12.244Z' +} +{ + message: '::ffff:127.0.0.1 "POST /tickets/register HTTP/1.1" - - - "-" "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" \n', + level: 'info', + timestamp: '2020-11-29T08:26:17.667Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 14.970 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:28:13.065Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 15.014 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:28:34.525Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 12.894 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:28:46.567Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 17.670 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:29:04.041Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-29T08:29:15.238Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 401 186 4.085 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:15.244Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 200 605 9.123 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:15.252Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 2.858 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:26.426Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.662 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:39.990Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 81.864 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:40.076Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.947 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:40.138Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.751 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:40.153Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 6.854 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:40.153Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 605 8.946 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:40.232Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 39 8.396 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:40.234Z' +} +{ + message: '400 - currency not found!', + level: 'warn', + timestamp: '2020-11-29T08:29:42.745Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 200 160 13.787 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:42.750Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 11.896 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:29:42.752Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 17.492 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:30:04.162Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 200 782 35.107 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:30:04.166Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.635 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:30:04.222Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.846 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:30:04.247Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 18.574 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:30:04.249Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 200 374512 3.888 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:30:04.256Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 4.688 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:30:47.833Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 734 15.355 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:32:04.171Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 16.356 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:32:04.176Z' +} +{ + message: '::1 "POST /user/createOffer HTTP/1.1" 200 115 41.718 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:33:16.920Z' +} +{ + message: '::1 "POST /user/createOffer HTTP/1.1" 200 115 23.198 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:33:49.070Z' +} +{ + message: '::1 "POST /auth/register HTTP/1.1" 200 149 84.297 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:34:14.751Z' +} +{ + message: '400 - Email or Password are not valid!', + level: 'warn', + timestamp: '2020-11-29T08:34:24.803Z' +} +{ + message: '::1 "POST /admin/login HTTP/1.1" 400 204 11.517 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:34:24.806Z' +} +{ + message: '400 - The email is not verified!', + level: 'warn', + timestamp: '2020-11-29T08:34:37.322Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 400 220 8.206 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:34:37.325Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 86.820 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:34:53.206Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 15.573 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:35:02.817Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 13.505 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:35:09.168Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 13.895 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:35:13.845Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 13.109 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:36:00.810Z' +} +{ + message: '::ffff:127.0.0.1 "POST /tickets/register HTTP/1.1" - - - "-" "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" \n', + level: 'info', + timestamp: '2020-11-29T08:36:14.754Z' +} +{ + message: '::1 "GET /user/acceptOffer?offerId=b3d41e6b-f832-46c2-af77-2c5d2ca7ed04 HTTP/1.1" 200 116 33.534 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:36:38.310Z' +} +{ + message: '::1 "GET /user/acceptOffer?offerId=f25fa5ca-5c06-4245-94f1-6c7c915cbd29 HTTP/1.1" 200 116 31.971 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T08:36:58.255Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.871 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:03.817Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.000 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:03.831Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 6.319 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:03.832Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 599 16.801 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:03.945Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 22.143 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:03.946Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.237 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:04.089Z' +} +{ + message: '400 - The user does not have ticket account!', + level: 'warn', + timestamp: '2020-11-29T08:37:11.326Z' +} +{ + message: '::ffff:127.0.0.1 "GET /tickets/getTickets HTTP/1.1" 400 211 5.681 "http://localhost:3000/tickets" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:11.329Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.738 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:17.240Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.378 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:17.253Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 6.521 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:17.254Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 7.052 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:17.359Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 9.621 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:17.365Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.318 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:17.470Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 599 7.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T08:37:19.024Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-11-29T10:25:27.680Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers HTTP/1.1" 400 198 15.315 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:25:27.689Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-29T10:25:53.292Z' +} +{ + message: '::1 "POST /user/createOffer HTTP/1.1" 401 186 13.978 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T10:25:53.295Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 99.515 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T10:25:58.948Z' +} +{ + message: '::1 "POST /user/createOffer HTTP/1.1" 200 115 32.773 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T10:26:02.210Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers HTTP/1.1" 200 217 10.073 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:26:06.221Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 217 10.517 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:26:36.974Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 24.114 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:28:15.506Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 22.694 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:29:31.853Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 26.410 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:30:55.202Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.568 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:30:56.176Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 26.010 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:32:09.667Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 363 23.675 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:45:19.282Z' +} +{ + message: '::1 "POST /user/createOffer HTTP/1.1" 200 115 52.787 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T10:46:08.250Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 682 15.126 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:46:13.713Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 683 25.370 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:47:26.132Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 711 22.909 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:49:25.199Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 5.865 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:07.243Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.786 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:22.677Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 106.955 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:22.788Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.232 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:22.861Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.329 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:22.872Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 6.283 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:22.873Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 12.472 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:22.978Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 734 14.518 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:22.981Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.449 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:23.101Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 709 13.514 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:25.384Z' +} +{ + message: '400 - The user does not have ticket account!', + level: 'warn', + timestamp: '2020-11-29T10:50:42.395Z' +} +{ + message: '::ffff:127.0.0.1 "GET /tickets/getTickets HTTP/1.1" 400 211 9.528 "http://localhost:3000/tickets" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:42.400Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 2.876 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:47.678Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.589 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:47.690Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 6.521 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:47.691Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 8.459 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:47.798Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 11.858 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:47.804Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.464 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:47.929Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 7.737 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:50:49.247Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T10:58:32.789Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 599 7.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:00:48.676Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.274 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:01:55.453Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.816 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:02:13.404Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 7.974 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:02:46.732Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 7.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:02:57.644Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:03:14.038Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=[object%20Object] HTTP/1.1" 200 390 11.757 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:05:04.690Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 19.663 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:05:04.696Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:05:32.744Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=[object%20Object] HTTP/1.1" 304 - 9.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:05:32.745Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.051 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:06:14.606Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=[object%20Object] HTTP/1.1" 304 - 12.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:06:14.611Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=[object%20Object] HTTP/1.1" 304 - 12.192 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:06:59.676Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.349 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:06:59.677Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.801 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:07:14.332Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=[object%20Object] HTTP/1.1" 304 - 12.211 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:07:14.334Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=[object%20Object] HTTP/1.1" 304 - 15.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:07:37.400Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.919 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:07:37.401Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.835 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:08:17.435Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 709 9.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:08:17.439Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 28.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:12:40.978Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 709 22.364 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:12:40.979Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.380 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:13:10.568Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 22.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:13:10.571Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:13:46.742Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.519 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:13:46.746Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.732 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:14:00.751Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:14:00.752Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 19.884 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:14:47.261Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 27.497 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:14:47.265Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:15:03.701Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.148 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:15:03.709Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.053 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:19:52.229Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.365 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:19:52.237Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.680 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:21:31.718Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.645 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:21:31.722Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 599 16.618 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:25:38.265Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 709 15.820 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:25:38.266Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.490 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:26:25.262Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.850 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:26:25.263Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:26:53.155Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 58.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:26:53.225Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.621 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:27:36.628Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1040 8.858 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:27:36.629Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 599 10.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:27:51.025Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.166 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:27:51.026Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:28:08.543Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 23.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:28:08.570Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:29:06.794Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1372 10.519 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:29:06.795Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 599 19.384 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:38:59.198Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:38:59.200Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 33.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:44:06.191Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1568 27.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:44:06.193Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:45:43.173Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.036 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:45:43.174Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.931 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:52:49.124Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:52:49.126Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.624 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:53:56.827Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.442 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:53:56.828Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 599 17.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:54:48.663Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:54:48.664Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:55:04.496Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:55:04.511Z' +} +{ + message: '400 - acceptor and creator must be different', + level: 'warn', + timestamp: '2020-11-29T11:55:14.623Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/acceptOffer?offerId=68e1f25e-41a8-4c81-95a9-6a2463fcc614 HTTP/1.1" 400 219 13.227 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:55:14.627Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:55:14.660Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:55:50.345Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:55:50.349Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 3.531 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:17.009Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.540 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:30.499Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 98.651 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:30.602Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.134 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:30.668Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.034 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:30.678Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.024 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:30.683Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 734 15.052 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:30.776Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 599 22.383 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:30.783Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.233 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:30.881Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.556 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:32.675Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1572 12.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:32.676Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/acceptOffer?offerId=68e1f25e-41a8-4c81-95a9-6a2463fcc614 HTTP/1.1" 200 116 34.293 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:39.175Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1190 9.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:39.204Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 9.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:43.611Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.438 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:56:43.617Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.237 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:57:52.263Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 27.368 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:57:52.293Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:58:41.989Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1570 15.151 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:58:41.991Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:58:53.064Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:58:53.071Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.260 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:59:10.224Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 17.744 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:59:10.244Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.495 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:59:15.065Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1951 17.720 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:59:15.075Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:59:38.826Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 17.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T11:59:38.848Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:04:18.323Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 13.088 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:04:18.326Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:05:03.373Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 19.062 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:05:03.385Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.675 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:05:44.129Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.536 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:05:44.130Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:06:16.795Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.733 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:06:16.797Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 7.996 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:06:26.073Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.909 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:06:26.083Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.319 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:06:39.032Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:06:39.051Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 7.890 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:06:48.756Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.534 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:06:48.770Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:07:08.711Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.937 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:07:08.718Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.997 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:08:13.287Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.420 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:08:13.291Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 200 800 12.665 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:08:34.234Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 7.657 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:08:34.237Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 2.622 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:08:34.291Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.359 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:08:34.303Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.155 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:08:34.316Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 4.281 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:08:34.318Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.825 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:42:01.512Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.852 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:42:01.513Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.458 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:45:54.490Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.641 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:45:54.498Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:46:16.341Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 21.340 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:46:16.352Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 12.532 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:46:54.393Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 12.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:46:54.395Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:47:18.037Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 12.343 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:47:18.040Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 27.124 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:47:30.902Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 25.172 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:47:30.904Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 12.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:47:59.040Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 12.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:47:59.042Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 9.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:48:17.128Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 11.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:48:17.135Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.493 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:48:28.160Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:48:28.161Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 11.859 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:50:11.241Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.661 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:50:11.243Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.671 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:50:39.218Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.498 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:50:39.219Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:51:01.536Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.242 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:51:01.538Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 22.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:51:16.219Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 22.370 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T12:51:16.221Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.643 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:09:45.111Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:09:45.112Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:10:09.731Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.560 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:10:09.731Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:10:42.521Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.841 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:10:42.522Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:12:09.881Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.456 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:12:09.884Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:12:41.952Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.792 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:12:41.953Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 9.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:14:59.894Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:14:59.896Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:15:31.794Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.563 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:15:31.797Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 9.025 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:15:59.545Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 14.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:15:59.551Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:18:53.848Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.756 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:18:53.860Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:20:57.765Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.332 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:20:57.766Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.902 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:22:20.139Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:22:20.140Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 7.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:24:50.315Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:24:50.321Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.548 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:25:08.959Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.659 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:25:08.962Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 13.115 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:27:34.874Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 13.190 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:27:34.884Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 6.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:28:33.674Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 7.022 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:28:33.685Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.793 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:34:10.277Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:34:10.278Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.138 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:34:13.690Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:34:13.694Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 7.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:34:44.185Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 38.461 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:34:44.221Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:35:26.639Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:35:26.679Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 6.975 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:36:34.363Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 58.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:36:34.427Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 10.533 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:37:43.531Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.329 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:37:43.536Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 6.489 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:40:15.991Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:40:16.008Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:40:36.689Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.868 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:40:36.698Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.397 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:41:19.251Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.986 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T13:41:19.256Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 45.638 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:03:43.458Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 48.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:03:43.469Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:04:12.997Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 20.390 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:04:13.002Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.006 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:04:24.555Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.942 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:04:24.556Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.486 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:05:34.876Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 6.686 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:05:34.903Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:05:54.229Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.701 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:05:54.233Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 29.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:06:38.395Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 31.866 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:06:38.475Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.159 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:07:00.519Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:07:00.520Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 23.463 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:14:17.223Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 25.216 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:14:17.232Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 24.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:14:57.826Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 23.782 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:14:57.828Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.762 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:15:29.609Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 20.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:15:29.622Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.681 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:18:45.351Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 23.331 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:18:45.359Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.391 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:19:32.882Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:19:32.889Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:20:34.326Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.827 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:20:34.343Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 19.844 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:21:15.790Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 22.393 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:21:15.791Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 35.421 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:22:17.644Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 33.447 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:22:17.657Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 31.207 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:22:53.370Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 37.479 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:22:53.386Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:23:00.374Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:23:00.377Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 6.072 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:23:37.017Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.001 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:23:37.028Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 404 166 16.187 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:31:56.910Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1146 22.151 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:32:06.345Z' +} +{ + message: '400 - you do not have any offer', + level: 'warn', + timestamp: '2020-11-29T14:32:40.300Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac1 HTTP/1.1" 400 182 7.296 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:32:40.302Z' +} +{ + message: '400 - you do not have any offer', + level: 'warn', + timestamp: '2020-11-29T14:32:53.510Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac3 HTTP/1.1" 400 182 7.229 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:32:53.512Z' +} +{ + message: '400 - you do not have any offer', + level: 'warn', + timestamp: '2020-11-29T14:32:58.046Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac1 HTTP/1.1" 400 182 8.977 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:32:58.050Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.832 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:33:01.073Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:34:25.077Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.894 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:34:25.080Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:34:41.438Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:34:41.444Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=undefined HTTP/1.1" 200 1078 11.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:39:32.744Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 19.574 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:39:32.756Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 20.656 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:39:32.758Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:41:50.359Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=undefined HTTP/1.1" 200 170 16.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:41:50.359Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 23.605 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:41:50.364Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 13.995 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:42:01.957Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=undefined HTTP/1.1" 200 170 26.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:42:01.977Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 31.913 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:42:01.978Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 32.399 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:42:11.833Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=undefined HTTP/1.1" 200 170 33.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:42:11.837Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 41.413 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:42:11.839Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 12.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:42:19.128Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=undefined HTTP/1.1" 200 170 13.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:42:19.135Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 27.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:42:19.139Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=undefined HTTP/1.1" 304 - 25.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:49:16.845Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 33.404 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:49:16.847Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 31.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:49:16.847Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 16.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:49:35.849Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=undefined HTTP/1.1" 200 170 14.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:49:35.852Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 22.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:49:35.859Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:50:00.075Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:50:00.105Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=undefined HTTP/1.1" 304 - 17.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:50:00.126Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.136 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:50:35.465Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.561 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:50:35.479Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.928 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:50:35.489Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:51:14.274Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:51:14.276Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.360 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:51:14.277Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.422 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:51:38.977Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:51:38.996Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.312 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:51:39.005Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.549 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:52:27.381Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 16.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:52:27.393Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1146 12.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:52:27.394Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 29.128 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:53:01.568Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 33.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:53:01.568Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:53:01.579Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.634 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:53:51.893Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.710 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:53:51.894Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.291 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:53:51.895Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.418 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:55:00.321Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 23.264 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:55:00.336Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.643 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:55:00.344Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:55:47.776Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 21.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:55:47.777Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:55:47.778Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.091 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:56:46.236Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:56:46.238Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:56:46.251Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.601 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:58:08.296Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 22.030 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:58:08.306Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:58:08.309Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 9.664 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:59:54.874Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:59:54.878Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.033 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T14:59:54.881Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 13.627 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:09.923Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.590 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:09.924Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.673 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:09.925Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 10.436 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:21.836Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 20.043 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:21.846Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1146 19.476 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:21.849Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 8.371 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:42.696Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 19.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:42.709Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1146 17.103 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:42.712Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.640 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:54.505Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.903 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:54.511Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:01:54.515Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.137 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:02:08.696Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 21.424 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:02:08.708Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.317 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:02:08.711Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.433 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:02:31.959Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 44.294 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:02:32.007Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1513 17.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:02:38.572Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 22.984 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:02:38.573Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2711 21.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:02:38.575Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.194 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:03:01.051Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:03:01.063Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.206 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:03:01.068Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.078 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:03:12.854Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.941 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:03:12.863Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:03:12.864Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.302 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:03:30.440Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 29.140 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:03:30.459Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 26.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:03:30.460Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 11.382 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:15.439Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2711 27.887 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:15.447Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.245 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:15.456Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.880 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:36.931Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.663 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:36.941Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 3.431 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:36.944Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 734 17.316 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:37.062Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 880 20.235 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:37.064Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.306 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:37.175Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 200 605 11.656 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:48.875Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 200 803 14.945 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:48.877Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:52.854Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.999 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:52.862Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.978 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:05:52.863Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.465 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:09:15.129Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 22.416 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:09:15.150Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 31.356 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:09:15.151Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.728 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:11:09.075Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 33.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:11:09.102Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 31.567 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:11:09.107Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 19.105 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:11:52.290Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:11:52.292Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 21.979 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:11:52.298Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.678 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:13:29.056Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 21.527 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:13:29.057Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 21.473 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:13:29.060Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.808 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:16:34.357Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.371 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:16:34.363Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.081 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:16:34.364Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.021 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:16:47.023Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 27.357 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:16:47.049Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 26.106 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:16:47.050Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:17:43.774Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 22.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:17:43.785Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 19.107 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:17:43.791Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 22.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:35:47.424Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.839 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:35:47.425Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2711 27.299 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-29T15:35:47.432Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 734 27.717 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:02:41.300Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 9.706 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:02:41.302Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 10.038 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:02:41.303Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 1.506 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:02:41.304Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 880 355.906 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:02:41.548Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.486 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:02:41.722Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 3.761 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:02:57.458Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.683 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:03:09.306Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 299.905 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:03:09.612Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.018 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:03:09.678Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.805 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:03:09.691Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.518 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:03:09.695Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 11.217 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:03:09.781Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 18.674 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:03:09.784Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.262 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:03:09.886Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 19.534 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:03:11.663Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1148 244.743 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:03:11.894Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2712 249.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:03:11.895Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 21.034 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:16:55.360Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 23.592 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:16:55.362Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 22.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:16:55.363Z' +} +{ + message: '400 - There is no offer with the given Id', + level: 'warn', + timestamp: '2020-11-30T06:17:05.156Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/withdrawOffer?offerIds=de4a2ee9-a1c5-4d68-85da-275bdb1517b4 HTTP/1.1" 400 196 110.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:17:05.163Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 8.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:17:05.214Z' +} +{ + message: '400 - There is no offer with the given Id', + level: 'warn', + timestamp: '2020-11-30T06:18:22.893Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/withdrawOffer?offerIds=de4a2ee9-a1c5-4d68-85da-275bdb1517b4 HTTP/1.1" 400 196 30.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:18:22.901Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.358 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:18:22.942Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.503 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:19:29.625Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 31.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:19:29.641Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.760 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:19:29.649Z' +} +{ + message: '400 - There is no offer with the given Id', + level: 'warn', + timestamp: '2020-11-30T06:19:49.529Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/withdrawOffer?offerIds=de4a2ee9-a1c5-4d68-85da-275bdb1517b4 HTTP/1.1" 400 196 14.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:19:49.532Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:19:49.594Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.958 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:20:51.488Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.076 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:20:51.519Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 32.565 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:20:51.541Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 22.042 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:20:55.580Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 32.547 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:20:55.593Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 33.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:20:55.614Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 23.755 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:21:15.027Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 37.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:21:15.046Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 35.861 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:21:15.047Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 34.610 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:23:27.321Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 36.946 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:23:27.322Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.199 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:23:27.341Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 13.930 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:23:42.011Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.691 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:23:42.026Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 41.323 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:23:42.085Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/withdrawOffer HTTP/1.1" 204 0 2.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:24:09.478Z' +} +{ + message: '400 - There is no offer with the given Id', + level: 'warn', + timestamp: '2020-11-30T06:24:09.510Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/withdrawOffer HTTP/1.1" 400 196 34.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:24:09.519Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.154 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:24:09.575Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/withdrawOffer HTTP/1.1" 204 0 2.893 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:26:44.139Z' +} +{ + message: '400 - There is no offer with the given Id', + level: 'warn', + timestamp: '2020-11-30T06:26:44.168Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/withdrawOffer HTTP/1.1" 400 196 30.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:26:44.175Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1148 10.805 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:26:44.223Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/withdrawOffer HTTP/1.1" 204 0 1.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:28:54.678Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/withdrawOffer HTTP/1.1" 200 83 57.063 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:28:54.743Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.308 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:28:54.789Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/withdrawOffer HTTP/1.1" 204 0 2.915 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:32:14.120Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/withdrawOffer HTTP/1.1" 200 83 34.566 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:32:14.161Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.068 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:32:14.203Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/withdrawOffer HTTP/1.1" 204 0 2.451 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:42:43.411Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/withdrawOffer HTTP/1.1" 200 83 32.926 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:42:43.450Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.594 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:42:43.500Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/withdrawOffer HTTP/1.1" 204 0 3.133 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:44:35.858Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/withdrawOffer HTTP/1.1" 200 83 93.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:44:35.956Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 780 11.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:44:36.008Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 44.840 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:51:13.935Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 2331 38.396 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:51:13.949Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 36.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:51:13.951Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 28.602 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:52:31.706Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 30.044 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:52:31.711Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 28.518 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:52:31.714Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 29.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:53:44.513Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 31.623 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:53:44.517Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 31.079 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:53:44.520Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.652 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:54:10.362Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 20.467 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:54:10.409Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 19.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T06:54:10.411Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/withdrawOffer HTTP/1.1" 204 0 0.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:11:31.375Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/withdrawOffer HTTP/1.1" 200 83 35.184 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:11:31.415Z' +} +{ + message: '400 - you do not have any offer', + level: 'warn', + timestamp: '2020-11-30T07:11:31.489Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 400 182 8.080 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:11:31.492Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 29.403 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:15:28.038Z' +} +{ + message: '400 - you do not have any offer', + level: 'warn', + timestamp: '2020-11-30T07:15:28.040Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1569 29.818 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:15:28.042Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 400 182 24.392 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:15:28.045Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.238 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:16:58.610Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 107.631 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:16:58.722Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 12.131 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:17:03.671Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1949 19.102 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:17:03.688Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 411 19.395 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:17:03.689Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.600 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:19:40.850Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 44.070 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:19:40.894Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=undefined HTTP/1.1" 200 86 26.579 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:19:40.896Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 29.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:19:40.901Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 9.769 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:20:10.012Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.651 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:20:10.027Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.488 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:20:10.031Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 34.061 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:20:37.946Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 44.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:20:37.952Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 42.767 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:20:37.967Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 25.529 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:21:09.075Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 24.891 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:21:09.075Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 27.985 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:21:09.076Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.682 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:21:19.625Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 41.306 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:21:19.676Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 32.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:21:19.677Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 1.344 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:22:20.672Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 20.064 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:22:20.700Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 778 9.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:22:20.782Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/withdrawOffer HTTP/1.1" 204 0 2.669 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:23:27.618Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/withdrawOffer HTTP/1.1" 200 83 56.870 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:23:27.679Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 45 8.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:23:27.748Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 24.804 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:23:35.442Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 54.266 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:23:35.485Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1569 62.118 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:23:35.488Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.233 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:23:57.409Z' +} +{ + errors: { + 'wallet.0.commitment': CastError: Cast to Number failed for value "Infinity4250000000" at path "commitment" + at SchemaNumber.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schema/number.js:384:11) + at SchemaNumber.SchemaType.applySetters (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1075:12) + at EmbeddedDocument.$set (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:1250:20) + at EmbeddedDocument.set [as commitment] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/document/compile.js:161:19) + at /home/hamid/projects/exchange/server/routes/user.js:876:79 + at step (/home/hamid/projects/exchange/server/routes/user.js:44:23) + at Object.next (/home/hamid/projects/exchange/server/routes/user.js:25:53) + at /home/hamid/projects/exchange/server/routes/user.js:19:71 + at new Promise () + at __awaiter (/home/hamid/projects/exchange/server/routes/user.js:15:12) + at /home/hamid/projects/exchange/server/routes/user.js:854:76 + at processTicksAndRejections (internal/process/task_queues.js:97:5) + at runNextTicks (internal/process/task_queues.js:66:3) + at processImmediate (internal/timers.js:434:9) { + stringValue: '"Infinity4250000000"', + messageFormat: undefined, + kind: 'Number', + value: 'Infinity4250000000', + path: 'commitment', + reason: AssertionError [ERR_ASSERTION]: The expression evaluated to a falsy value: + + assert.ok(!isNaN(val)) + + at castNumber (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast/number.js:28:10) + at SchemaNumber.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schema/number.js:382:12) + at SchemaNumber.SchemaType.applySetters (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1075:12) + at EmbeddedDocument.$set (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:1250:20) + at EmbeddedDocument.set [as commitment] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/document/compile.js:161:19) + at /home/hamid/projects/exchange/server/routes/user.js:876:79 + at step (/home/hamid/projects/exchange/server/routes/user.js:44:23) + at Object.next (/home/hamid/projects/exchange/server/routes/user.js:25:53) + at /home/hamid/projects/exchange/server/routes/user.js:19:71 + at new Promise () + at __awaiter (/home/hamid/projects/exchange/server/routes/user.js:15:12) + at /home/hamid/projects/exchange/server/routes/user.js:854:76 + at processTicksAndRejections (internal/process/task_queues.js:97:5) + at runNextTicks (internal/process/task_queues.js:66:3) + at processImmediate (internal/timers.js:434:9) { + generatedMessage: true, + code: 'ERR_ASSERTION', + actual: false, + expected: true, + operator: '==' + } + } + }, + _message: 'User validation failed', + level: 'warn', + timestamp: '2020-11-30T07:23:57.484Z' +} +{ + message: 'ValidationError: User validation failed: wallet.0.commitment: Cast to Number failed for value "Infinity4250000000" at path "commitment"\n' + + ' at model.Document.invalidate (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n' + + ' at EmbeddedDocument.invalidate (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/types/embedded.js:291:29)\n' + + ' at EmbeddedDocument.$set (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:1290:12)\n' + + ' at EmbeddedDocument.set [as commitment] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/document/compile.js:161:19)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:876:79\n' + + ' at step (/home/hamid/projects/exchange/server/routes/user.js:44:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/routes/user.js:25:53)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:19:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/routes/user.js:15:12)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:854:76\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-30T07:23:57.485Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 500 192 75.657 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:23:57.488Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 7.540 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:23:57.556Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.270 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:24:28.965Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:24:28.968Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:24:28.970Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.284 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:24:42.363Z' +} +{ + errors: { + 'wallet.0.commitment': CastError: Cast to Number failed for value "Infinity4250000000" at path "commitment" + at SchemaNumber.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schema/number.js:384:11) + at SchemaNumber.SchemaType.applySetters (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1075:12) + at EmbeddedDocument.$set (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:1250:20) + at EmbeddedDocument.set [as commitment] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/document/compile.js:161:19) + at /home/hamid/projects/exchange/server/routes/user.js:876:79 + at step (/home/hamid/projects/exchange/server/routes/user.js:44:23) + at Object.next (/home/hamid/projects/exchange/server/routes/user.js:25:53) + at /home/hamid/projects/exchange/server/routes/user.js:19:71 + at new Promise () + at __awaiter (/home/hamid/projects/exchange/server/routes/user.js:15:12) + at /home/hamid/projects/exchange/server/routes/user.js:854:76 + at processTicksAndRejections (internal/process/task_queues.js:97:5) + at runNextTicks (internal/process/task_queues.js:66:3) + at processImmediate (internal/timers.js:434:9) { + stringValue: '"Infinity4250000000"', + messageFormat: undefined, + kind: 'Number', + value: 'Infinity4250000000', + path: 'commitment', + reason: AssertionError [ERR_ASSERTION]: The expression evaluated to a falsy value: + + assert.ok(!isNaN(val)) + + at castNumber (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/cast/number.js:28:10) + at SchemaNumber.cast (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schema/number.js:382:12) + at SchemaNumber.SchemaType.applySetters (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/schematype.js:1075:12) + at EmbeddedDocument.$set (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:1250:20) + at EmbeddedDocument.set [as commitment] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/document/compile.js:161:19) + at /home/hamid/projects/exchange/server/routes/user.js:876:79 + at step (/home/hamid/projects/exchange/server/routes/user.js:44:23) + at Object.next (/home/hamid/projects/exchange/server/routes/user.js:25:53) + at /home/hamid/projects/exchange/server/routes/user.js:19:71 + at new Promise () + at __awaiter (/home/hamid/projects/exchange/server/routes/user.js:15:12) + at /home/hamid/projects/exchange/server/routes/user.js:854:76 + at processTicksAndRejections (internal/process/task_queues.js:97:5) + at runNextTicks (internal/process/task_queues.js:66:3) + at processImmediate (internal/timers.js:434:9) { + generatedMessage: true, + code: 'ERR_ASSERTION', + actual: false, + expected: true, + operator: '==' + } + } + }, + _message: 'User validation failed', + level: 'warn', + timestamp: '2020-11-30T07:24:42.390Z' +} +{ + message: 'ValidationError: User validation failed: wallet.0.commitment: Cast to Number failed for value "Infinity4250000000" at path "commitment"\n' + + ' at model.Document.invalidate (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n' + + ' at EmbeddedDocument.invalidate (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/types/embedded.js:291:29)\n' + + ' at EmbeddedDocument.$set (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:1290:12)\n' + + ' at EmbeddedDocument.set [as commitment] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/document/compile.js:161:19)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:876:79\n' + + ' at step (/home/hamid/projects/exchange/server/routes/user.js:44:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/routes/user.js:25:53)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:19:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/routes/user.js:15:12)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:854:76\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-30T07:24:42.390Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 500 192 27.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:24:42.394Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 7.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:24:42.458Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.322 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:28:01.898Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.212 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:28:01.907Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 18.402 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:28:01.909Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.231 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:28:12.340Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 26.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:28:12.370Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 411 8.327 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:28:12.430Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 25.324 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:29:49.876Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1949 36.459 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:29:49.882Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 44.824 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:29:49.889Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.246 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:30:24.365Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 24.255 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:30:24.393Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 778 8.048 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:30:24.451Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/withdrawOffer HTTP/1.1" 204 0 0.243 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:40:47.966Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/withdrawOffer HTTP/1.1" 200 83 32.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:40:48.001Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 45 6.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:40:48.063Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 30.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:41:18.143Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1569 39.196 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:41:18.154Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 20.236 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:41:18.160Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 18.031 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:53:14.261Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 200 814 22.675 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:53:14.264Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.668 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:53:14.343Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 8.537 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:53:14.363Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.485 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:53:14.365Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 6.144 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T07:53:14.367Z' +} +{ + message: '400 - The user does not have ticket account!', + level: 'warn', + timestamp: '2020-11-30T08:00:02.618Z' +} +{ + message: '::ffff:127.0.0.1 "GET /tickets/getTickets HTTP/1.1" 400 211 9.375 "http://localhost:3000/tickets" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T08:00:02.621Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 304 - 13.509 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T08:00:09.064Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 15.050 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T08:00:09.067Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.399 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T08:00:09.108Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.933 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T08:00:09.115Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.432 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T08:00:09.126Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.789 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T08:00:09.130Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.880 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T08:00:11.371Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 16.994 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T08:00:11.372Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 11.037 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T08:00:11.376Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 1.666 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:00:55.456Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-30T11:00:55.515Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 401 186 3.763 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:00:55.518Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 7.314 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:00:55.523Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-30T11:26:10.037Z' +} +{ + message: '::ffff:127.0.0.1 "GET /tickets/getTickets HTTP/1.1" 401 186 5.962 "http://localhost:3000/tickets" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:26:10.039Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-30T11:26:16.274Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 401 186 5.968 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:26:16.278Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 14.649 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:26:16.284Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 21.914 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:26:16.293Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.248 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:26:42.603Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-30T11:26:42.607Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 401 186 3.086 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:26:42.609Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-30T11:26:42.684Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 401 186 3.171 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:26:42.688Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 3.243 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:26:55.445Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.328 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:17.423Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 88.724 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:17.515Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.503 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:17.574Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.408 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:17.583Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.098 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:17.584Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 734 16.162 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:17.686Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 17.070 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:17.687Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.075 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:17.788Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 10.629 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:24.479Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 15.689 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:24.485Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 45 11.568 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:24.487Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.401 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:36.915Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 24.791 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:36.943Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 411 7.597 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:27:37.004Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 200 811 15.768 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:28:13.462Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 11.607 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:28:13.465Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.457 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:28:13.529Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.225 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:28:21.223Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1949 17.472 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:28:21.228Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 304 - 17.045 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:28:21.231Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.681 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:29:12.059Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 6.845 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:29:12.099Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 304 - 14.872 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-11-30T11:29:12.101Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-30T11:38:23.579Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 401 186 3.277 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:38:23.583Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 82.777 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:38:32.911Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 89 99.681 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:38:39.916Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 39.170 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:00:27.253Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 19.336 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:02:28.614Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 114 16.096 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:02:31.835Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 14.710 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:02:48.733Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 41.296 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:05:33.114Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 39.025 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:07:11.716Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 53.370 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:15:05.210Z' +} +{ level: 'warn', timestamp: '2020-11-30T12:15:31.364Z' } +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:128:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T12:15:31.365Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 14598.432 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:15:31.370Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 41.301 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:16:50.892Z' +} +{ level: 'warn', timestamp: '2020-11-30T12:17:08.917Z' } +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:128:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T12:17:08.918Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 14740.899 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:17:08.925Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 40.552 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:18:44.936Z' +} +{ level: 'warn', timestamp: '2020-11-30T12:19:04.628Z' } +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:128:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T12:19:04.629Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 15709.453 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T12:19:04.633Z' +} +<<<<<<< HEAD +======= + timestamp: '2020-11-30T11:48:43.298Z' } +>>>>>>> 012bcd70d97c0eb31d1f5d15cae527fce24b6f74 +======= +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 29 184.589 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T06:41:29.028Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 29 8.214 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T06:47:07.299Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 29 5.992 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T06:47:09.902Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 29 6.802 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T07:25:13.392Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 29 32.635 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T07:47:34.884Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 29 6.685 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T07:47:36.130Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 824 34.945 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T07:49:20.101Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 432 11.818 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T08:18:39.288Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 432 6.453 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T08:18:59.509Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 432 8.038 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T08:19:24.027Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 1232 9.335 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T09:27:27.506Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 1232 34.814 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T09:37:30.543Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 1232 7.830 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T09:37:36.533Z' +} +{ + message: 'Expected type bool, got object', + code: -3, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T09:39:35.140Z' +} +{ + message: 'RpcError: Expected type bool, got object\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T09:39:35.142Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 500 192 229.072 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T09:39:35.150Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 423 36.001 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T09:40:27.938Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 200 1636 34.393 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T10:01:12.746Z' +} +{ level: 'warn', timestamp: '2020-11-25T10:57:09.572Z' } +{ + message: 'ReferenceError: unspentTx is not defined\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:120:17\n' + + ' at Object. (/home/polychain3/exchange/server/middlewares/tryCatch.js:47:42)\n' + + ' at step (/home/polychain3/exchange/server/middlewares/tryCatch.js:33:23)\n' + + ' at Object.next (/home/polychain3/exchange/server/middlewares/tryCatch.js:14:53)\n' + + ' at /home/polychain3/exchange/server/middlewares/tryCatch.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/polychain3/exchange/server/middlewares/tryCatch.js:4:12)\n' + + ' at /home/polychain3/exchange/server/middlewares/tryCatch.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/polychain3/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/polychain3/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/polychain3/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/polychain3/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/polychain3/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at Function.process_params (/home/polychain3/exchange/server/node_modules/express/lib/router/index.js:335:12)\n' + + ' at next (/home/polychain3/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/home/polychain3/exchange/server/node_modules/express/lib/router/index.js:174:3)', + level: 'error', + timestamp: '2020-11-25T10:57:09.572Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 435.309 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T10:57:09.580Z' +} +{ + message: 'Invalid Bitcoin address: receiver', + code: -5, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T10:58:19.844Z' +} +{ + message: 'RpcError: Invalid Bitcoin address: receiver\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T10:58:19.845Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 40.260 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T10:58:19.851Z' +} +{ + message: 'Invalid Bitcoin address: receiver', + code: -5, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T10:59:26.649Z' +} +{ + message: 'RpcError: Invalid Bitcoin address: receiver\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T10:59:26.649Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 35.312 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T10:59:26.656Z' +} +{ + message: 'Invalid Bitcoin address: receiver', + code: -5, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T11:03:29.239Z' +} +{ + message: 'RpcError: Invalid Bitcoin address: receiver\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T11:03:29.241Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 35.772 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T11:03:29.247Z' +} +{ + message: 'Invalid Bitcoin address: receiver', + code: -5, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T11:04:50.675Z' +} +{ + message: 'RpcError: Invalid Bitcoin address: receiver\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T11:04:50.676Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 35.546 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T11:04:50.683Z' +} +{ + message: 'Invalid Bitcoin address: receiver', + code: -5, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T11:07:24.970Z' +} +{ + message: 'RpcError: Invalid Bitcoin address: receiver\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T11:07:24.971Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 38.948 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T11:07:24.979Z' +} +{ + message: "Data must be hexadecimal string (not 'Hi')", + code: -8, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T11:21:58.763Z' +} +{ + message: "RpcError: Data must be hexadecimal string (not 'Hi')\n" + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T11:21:58.764Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 34.852 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T11:21:58.771Z' +} +{ + message: "Data must be hexadecimal string (not 'tb1qs0uffrs0n84q6v9krwe6ajx04j3mvxh0j96myl')", + code: -8, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T11:24:34.960Z' +} +{ + message: "RpcError: Data must be hexadecimal string (not 'tb1qs0uffrs0n84q6v9krwe6ajx04j3mvxh0j96myl')\n" + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T11:24:34.961Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 35.373 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T11:24:34.968Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T11:26:53.671Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T11:31:39.766Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T11:34:03.602Z' +} +{ level: 'warn', timestamp: '2020-11-25T12:02:33.944Z' } +{ + message: 'TypeError: client.dumpprivkey is not a function\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:92:16\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T12:02:33.945Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 35.460 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T12:02:33.952Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T12:05:57.174Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T12:08:46.391Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T12:32:57.951Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T13:01:02.485Z' +} +{ + message: '81fab1ad1223e60d66d206be10e3925b5a5c008fae1ebea41c916fb3a4db57d0', + level: 'warn', + timestamp: '2020-11-25T13:04:47.722Z' +} +{ + message: undefined, + level: 'error', + timestamp: '2020-11-25T13:04:47.723Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 41.009 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T13:04:47.731Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T13:08:26.568Z' +} +{ + message: 'Invalid parameter, key-value pair must contain exactly one key', + code: -8, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T14:20:40.387Z' +} +{ + message: 'RpcError: Invalid parameter, key-value pair must contain exactly one key\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:20:40.389Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 36.332 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T14:20:40.396Z' +} +{ + message: 'bad-txns-inputs-missingorspent', + code: -25, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T14:23:21.050Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:23:21.051Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 262.588 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T14:23:21.059Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T14:25:32.029Z' +} +{ + message: 'bad-txns-inputs-missingorspent', + code: -25, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T14:28:19.714Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:28:19.715Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 42.670 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T14:28:19.722Z' +} +{ + message: 'bad-txns-inputs-missingorspent', + code: -25, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T14:32:58.149Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:32:58.151Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 48.885 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T14:32:58.160Z' +} +{ + message: 'bad-txns-inputs-missingorspent', + code: -25, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T14:37:09.723Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:37:09.723Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 42.931 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T14:37:09.730Z' +} +{ + message: 'bad-txns-inputs-missingorspent', + code: -25, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T14:47:43.479Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:47:43.484Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 48.256 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T14:47:43.491Z' +} +{ + message: 'bad-txns-inputs-missingorspent', + code: -25, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T14:48:28.080Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:48:28.082Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 20.708 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T14:48:28.088Z' +} +{ + message: 'bad-txns-inputs-missingorspent', + code: -25, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T14:50:01.469Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:50:01.470Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 51.738 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T14:50:01.483Z' +} +{ + message: 'bad-txns-inputs-missingorspent', + code: -25, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T14:53:11.597Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:53:11.598Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 41.643 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T14:53:11.605Z' +} +{ + message: 'bad-txns-inputs-missingorspent', + code: -25, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T14:55:06.009Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:55:06.010Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 51.147 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T14:55:06.017Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T15:31:51.575Z' +} +{ + message: 'bad-txns-vout-empty', + code: -26, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T15:41:01.896Z' +} +{ + message: 'RpcError: bad-txns-vout-empty\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T15:41:01.898Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 64.175 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T15:41:01.906Z' +} +{ + message: 'bad-txns-vout-empty', + code: -26, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T15:43:00.359Z' +} +{ + message: 'RpcError: bad-txns-vout-empty\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T15:43:00.360Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 48.358 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T15:43:00.367Z' +} +{ + message: 'min relay fee not met, 0 < 110', + code: -26, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-25T15:43:54.128Z' +} +{ + message: 'RpcError: min relay fee not met, 0 < 110\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T15:43:54.129Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 43.928 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T15:43:54.136Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-25T15:48:08.110Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T06:47:17.029Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T06:48:59.993Z' +} +{ + message: 'JSON integer out of range', + code: -1, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T06:50:28.087Z' +} +{ + message: 'RpcError: JSON integer out of range\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T06:50:28.088Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" 500 192 109.167 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T06:50:28.233Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T06:52:50.396Z' +} +{ + message: '::1 "POST /auth/register HTTP/1.1" 200 156 236.186 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T07:03:32.335Z' +} +{ + message: '400 - The email is not verified!', + level: 'warn', + timestamp: '2020-11-28T07:04:06.280Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 400 220 10.010 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T07:04:06.284Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 80.186 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T07:04:52.975Z' +} +{ + message: '::ffff:127.0.0.1 "POST /tickets/register HTTP/1.1" - - - "-" "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" \n', + level: 'info', + timestamp: '2020-11-28T07:05:32.340Z' +} +{ + message: '422 - the value should be positive!', + level: 'warn', + timestamp: '2020-11-28T07:06:21.467Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 422 184 5.464 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T07:06:21.470Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 14.882 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T07:06:35.150Z' +} +{ level: 'warn', timestamp: '2020-11-28T07:08:45.931Z' } +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:645:102\n' + + ' at baseFindIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:802:11)\n' + + ' at findIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:7280:14)\n' + + ' at Function.find (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5079:21)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:645:25\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:08:45.933Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 8.648 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T07:08:45.936Z' +} +{ level: 'warn', timestamp: '2020-11-28T07:19:47.702Z' } +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:649:102\n' + + ' at baseFindIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:802:11)\n' + + ' at findIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:7280:14)\n' + + ' at Function.find (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5079:21)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:649:25\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:19:47.704Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 30.539 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T07:19:47.714Z' +} +{ level: 'warn', timestamp: '2020-11-28T07:20:50.066Z' } +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:651:39\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:20:50.066Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 29.822 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T07:20:50.075Z' +} +{ level: 'warn', timestamp: '2020-11-28T07:22:43.394Z' } +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:652:39\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:22:43.395Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 34.349 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T07:22:43.405Z' +} +{ level: 'warn', timestamp: '2020-11-28T07:25:54.909Z' } +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:653:39\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:25:54.910Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 29.447 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T07:25:54.918Z' +} +{ level: 'warn', timestamp: '2020-11-28T07:41:59.010Z' } +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:654:39\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:41:59.011Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 30.210 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T07:41:59.019Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 29.454 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T08:09:19.300Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T08:15:56.863Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T08:32:51.496Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 23.436 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T08:36:18.813Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 35.302 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T08:42:12.897Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 33.822 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T08:47:42.767Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 33.281 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T08:56:38.260Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 35.742 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T08:59:50.592Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 34.946 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T09:02:30.167Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 36.057 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T09:08:25.316Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-28T11:04:01.961Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 401 186 20.054 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:04:01.983Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 96.685 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:04:11.630Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 21.838 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:04:23.241Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 38.878 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:13:56.540Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 37.020 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:15:37.213Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 37.164 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:17:25.757Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 37.830 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:19:20.650Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 37.485 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:20:43.768Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 39.599 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:25:22.631Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 42.411 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:27:29.769Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 17.927 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:31:49.233Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:36:42.740Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:37:48.663Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:38:45.166Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 40.465 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:39:50.907Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 76 42.327 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:41:57.396Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:51:39.178Z' +} +{ + message: '400 - transaction failed ', + level: 'warn', + timestamp: '2020-11-28T11:53:38.979Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 400 167 43.752 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:53:38.987Z' +} +{ + message: '400 - transaction failed ', + level: 'warn', + timestamp: '2020-11-28T11:54:11.609Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 400 167 22.785 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:54:11.619Z' +} +{ + message: '400 - transaction failed ', + level: 'warn', + timestamp: '2020-11-28T11:58:17.788Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 400 167 21.181 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:58:17.796Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T11:59:18.770Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 66 41.715 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:01:03.373Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 66 22.074 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:01:50.861Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:06:58.378Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 140 89.052 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:08:46.629Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:24:45.178Z' +} +{ + message: 'Invalid amount', + code: -3, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T12:26:21.294Z' +} +{ + message: 'RpcError: Invalid amount\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T12:26:21.294Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 48.031 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:26:21.303Z' +} +{ + message: 'Invalid amount', + code: -3, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T12:35:17.817Z' +} +{ + message: 'RpcError: Invalid amount\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T12:35:17.818Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 76.424 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T12:35:17.824Z' +} +{ + message: 'Invalid amount', + code: -3, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T13:22:31.938Z' +} +{ + message: 'RpcError: Invalid amount\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:22:31.939Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 48.082 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T13:22:31.947Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T13:24:08.855Z' +} +{ + message: 'Invalid amount', + code: -3, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T13:25:45.334Z' +} +{ + message: 'RpcError: Invalid amount\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:25:45.336Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 69.562 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T13:25:45.345Z' +} +{ + message: 'bad-txns-in-belowout, value in (0.00003724) < value out (0.00190208)', + code: -26, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T13:31:26.053Z' +} +{ + message: 'RpcError: bad-txns-in-belowout, value in (0.00003724) < value out (0.00190208)\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:31:26.053Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 67.472 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T13:31:26.060Z' +} +{ + message: 'bad-txns-in-belowout, value in (0.00003724) < value out (0.00190208)', + code: -26, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T13:35:24.629Z' +} +{ + message: 'RpcError: bad-txns-in-belowout, value in (0.00003724) < value out (0.00190208)\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:35:24.630Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 67.456 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T13:35:24.637Z' +} +{ + message: 'Invalid parameter, missing vout key', + code: -8, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T13:38:11.149Z' +} +{ + message: 'RpcError: Invalid parameter, missing vout key\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:38:11.150Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 67.613 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T13:38:11.157Z' +} +{ + message: 'min relay fee not met, 100 < 141', + code: -26, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T13:41:06.895Z' +} +{ + message: 'RpcError: min relay fee not met, 100 < 141\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:41:06.896Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 71.159 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T13:41:06.903Z' +} +{ + message: 'min relay fee not met, 130 < 141', + code: -26, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T13:43:51.287Z' +} +{ + message: 'RpcError: min relay fee not met, 130 < 141\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:43:51.288Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 73.758 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T13:43:51.291Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 140 46.416 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T13:44:09.301Z' +} +{ + message: '::1 "POST /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T13:48:34.795Z' +} +{ level: 'warn', timestamp: '2020-11-28T13:57:59.366Z' } +{ + message: 'Error: no auth mechanism defined\n' + + ' at Auth.onRequest (/home/polychain3/exchange/server/node_modules/request/lib/auth.js:132:32)\n' + + ' at Request.auth (/home/polychain3/exchange/server/node_modules/request/request.js:1341:14)\n' + + ' at Request.init (/home/polychain3/exchange/server/node_modules/request/request.js:378:10)\n' + + ' at new Request (/home/polychain3/exchange/server/node_modules/request/request.js:127:8)\n' + + ' at request (/home/polychain3/exchange/server/node_modules/request/index.js:53:10)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:61:12\n' + + ' at Object.apply (/home/polychain3/exchange/server/node_modules/@uphold/request-logger/src/index.js:27:19)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:100:12\n' + + ' at /home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:41:9\n' + + ' at new Promise ()\n' + + ' at Function.postAsync (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:40:38)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:48)\n' + + ' at apply (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:474:27)\n' + + ' at Client.wrapper [as getInfo] (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5337:16)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:127:12\n' + + ' at Object. (/home/polychain3/exchange/server/middlewares/tryCatch.js:47:42)', + level: 'error', + timestamp: '2020-11-28T13:57:59.376Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 500 192 33.656 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T13:57:59.386Z' +} +{ level: 'warn', timestamp: '2020-11-28T14:03:55.530Z' } +{ + message: 'Error: no auth mechanism defined\n' + + ' at Auth.onRequest (/home/polychain3/exchange/server/node_modules/request/lib/auth.js:132:32)\n' + + ' at Request.auth (/home/polychain3/exchange/server/node_modules/request/request.js:1341:14)\n' + + ' at Request.init (/home/polychain3/exchange/server/node_modules/request/request.js:378:10)\n' + + ' at new Request (/home/polychain3/exchange/server/node_modules/request/request.js:127:8)\n' + + ' at request (/home/polychain3/exchange/server/node_modules/request/index.js:53:10)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:61:12\n' + + ' at Object.apply (/home/polychain3/exchange/server/node_modules/@uphold/request-logger/src/index.js:27:19)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:100:12\n' + + ' at /home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:41:9\n' + + ' at new Promise ()\n' + + ' at Function.postAsync (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:40:38)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:48)\n' + + ' at apply (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:476:27)\n' + + ' at Client.wrapper [as createRawTransaction] (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5337:16)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:134:12\n' + + ' at Object. (/home/polychain3/exchange/server/middlewares/tryCatch.js:47:42)', + level: 'error', + timestamp: '2020-11-28T14:03:55.538Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 500 192 31.234 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T14:03:55.548Z' +} +{ level: 'warn', timestamp: '2020-11-28T14:07:27.186Z' } +{ + message: 'Error: no auth mechanism defined\n' + + ' at Auth.onRequest (/home/polychain3/exchange/server/node_modules/request/lib/auth.js:132:32)\n' + + ' at Request.auth (/home/polychain3/exchange/server/node_modules/request/request.js:1341:14)\n' + + ' at Request.init (/home/polychain3/exchange/server/node_modules/request/request.js:378:10)\n' + + ' at new Request (/home/polychain3/exchange/server/node_modules/request/request.js:127:8)\n' + + ' at request (/home/polychain3/exchange/server/node_modules/request/index.js:53:10)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:61:12\n' + + ' at Object.apply (/home/polychain3/exchange/server/node_modules/@uphold/request-logger/src/index.js:27:19)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:100:12\n' + + ' at /home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:41:9\n' + + ' at new Promise ()\n' + + ' at Function.postAsync (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:40:38)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:48)\n' + + ' at apply (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:476:27)\n' + + ' at Client.wrapper [as createRawTransaction] (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5337:16)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:134:12\n' + + ' at Object. (/home/polychain3/exchange/server/middlewares/tryCatch.js:47:42)', + level: 'error', + timestamp: '2020-11-28T14:07:27.188Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 500 192 24.876 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T14:07:27.197Z' +} +{ level: 'warn', timestamp: '2020-11-28T14:12:26.041Z' } +{ + message: 'Error: no auth mechanism defined\n' + + ' at Auth.onRequest (/home/polychain3/exchange/server/node_modules/request/lib/auth.js:132:32)\n' + + ' at Request.auth (/home/polychain3/exchange/server/node_modules/request/request.js:1341:14)\n' + + ' at Request.init (/home/polychain3/exchange/server/node_modules/request/request.js:378:10)\n' + + ' at new Request (/home/polychain3/exchange/server/node_modules/request/request.js:127:8)\n' + + ' at request (/home/polychain3/exchange/server/node_modules/request/index.js:53:10)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:61:12\n' + + ' at Object.apply (/home/polychain3/exchange/server/node_modules/@uphold/request-logger/src/index.js:27:19)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:100:12\n' + + ' at /home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:41:9\n' + + ' at new Promise ()\n' + + ' at Function.postAsync (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:40:38)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:48)\n' + + ' at apply (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:476:27)\n' + + ' at Client.wrapper [as createRawTransaction] (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5337:16)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:134:12\n' + + ' at Object. (/home/polychain3/exchange/server/middlewares/tryCatch.js:47:42)', + level: 'error', + timestamp: '2020-11-28T14:12:26.042Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 500 192 7.835 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T14:12:26.046Z' +} +{ + message: 'Unauthorized', + body: '', + code: 401, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T14:18:12.248Z' +} +{ + message: 'RpcError: Unauthorized\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:73:13)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T14:18:12.249Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" 500 192 283.597 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T14:18:12.259Z' +} +{ + message: '::1 "GET /wallet/testbtcCore HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T14:19:52.209Z' +} +{ + message: 'Invalid parameter, duplicated address: tb1qqera5t2vuuhghtt8z92w3jcx47pu9xmfh4myy6', + code: -8, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T15:37:55.311Z' +} +{ + message: 'RpcError: Invalid parameter, duplicated address: tb1qqera5t2vuuhghtt8z92w3jcx47pu9xmfh4myy6\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at runMicrotasks ()\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T15:37:55.311Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 55.031 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T15:37:55.319Z' +} +{ + message: 'min relay fee not met, 110 < 141', + code: -26, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T15:41:23.650Z' +} +{ + message: 'RpcError: min relay fee not met, 110 < 141\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at runMicrotasks ()\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T15:41:23.651Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 87.342 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T15:41:23.654Z' +} +{ + message: 'min relay fee not met, 120 < 141', + code: -26, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T15:41:43.793Z' +} +{ + message: 'RpcError: min relay fee not met, 120 < 141\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at runMicrotasks ()\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T15:41:43.793Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 29.932 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T15:41:43.796Z' +} +{ + message: 'min relay fee not met, 140 < 141', + code: -26, + name: 'RpcError', + level: 'warn', + timestamp: '2020-11-28T15:41:58.694Z' +} +{ + message: 'RpcError: min relay fee not met, 140 < 141\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at runMicrotasks ()\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T15:41:58.695Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 500 192 33.309 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T15:41:58.702Z' +} +{ + message: '::1 "POST /wallet/transferTO HTTP/1.1" 200 140 41.274 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-28T15:42:06.298Z' +} +{ + message: 'connection timed out', + reason: TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: MongoNetworkTimeoutError: connection timed out + at connectionFailureError (/home/polychain3/exchange/server/node_modules/mongodb/lib/core/connection/connect.js:342:14) + at Socket. (/home/polychain3/exchange/server/node_modules/mongodb/lib/core/connection/connect.js:310:16) + at Object.onceWrapper (events.js:421:28) + at Socket.emit (events.js:315:20) + at Socket._onTimeout (net.js:482:8) + at listOnTimeout (internal/timers.js:549:17) + at processTimers (internal/timers.js:492:7), + roundTripTime: -1, + lastUpdateTime: 1214368, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] + } + }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null + }, + level: 'error', + timestamp: '2020-11-30T06:05:14.572Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 415.208 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:25:37.746Z' +} +{ + message: '::1 "GET /wallet/transferInWithTxId HTTP/1.1" 404 164 79.512 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:28:36.727Z' +} +{ level: 'warn', timestamp: '2020-11-30T07:28:46.090Z' } +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:743:104\n' + + ' at baseFindIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:802:11)\n' + + ' at findIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:7280:14)\n' + + ' at Function.find (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5079:21)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:743:27\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-30T07:28:46.091Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 500 192 11.127 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:28:46.095Z' +} +{ level: 'warn', timestamp: '2020-11-30T07:31:43.852Z' } +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:743:104\n' + + ' at baseFindIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:802:11)\n' + + ' at findIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:7280:14)\n' + + ' at Function.find (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5079:21)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:743:27\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-30T07:31:43.854Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 500 192 26.185 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:31:43.861Z' +} +{ level: 'warn', timestamp: '2020-11-30T07:36:17.688Z' } +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:746:104\n' + + ' at baseFindIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:802:11)\n' + + ' at findIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:7280:14)\n' + + ' at Function.find (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5079:21)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:746:27\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-30T07:36:17.690Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 500 192 30.545 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:36:17.698Z' +} +{ + message: '400 - undefined', + level: 'warn', + timestamp: '2020-11-30T07:37:45.151Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 400 36 10.217 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:37:45.152Z' +} +{ + message: '400 - undefined', + level: 'warn', + timestamp: '2020-11-30T07:38:24.716Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 400 36 11.273 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:38:24.720Z' +} +{ + message: '400 - undefined', + level: 'warn', + timestamp: '2020-11-30T07:38:41.969Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 400 36 1.612 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:38:41.970Z' +} +{ + message: '400 - undefined', + level: 'warn', + timestamp: '2020-11-30T07:39:25.064Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 400 36 1.275 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:39:25.065Z' +} +{ + message: '400 - undefined', + level: 'warn', + timestamp: '2020-11-30T07:40:50.092Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 400 36 12.512 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:40:50.096Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 200 91 53.653 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:41:42.895Z' +} +{ + message: '::1 "POST /auth/register HTTP/1.1" 200 156 222.546 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:43:29.306Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 83.277 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:44:41.872Z' +} +{ + message: '::ffff:127.0.0.1 "POST /tickets/register HTTP/1.1" - - - "-" "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" \n', + level: 'info', + timestamp: '2020-11-30T07:45:29.317Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 12.357 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:45:40.836Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 200 91 12.781 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:46:01.910Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 200 143 50.293 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:47:45.979Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 200 143 60.782 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T07:56:46.181Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 200 142 56.651 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T08:00:44.202Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 200 142 60.965 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T08:04:49.686Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 200 142 50.868 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T08:06:14.849Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 200 142 55.195 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T08:09:57.852Z' +} +{ + message: '::1 "POST /wallet/transferInWithTxId HTTP/1.1" 200 142 20.497 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T08:35:54.241Z' +} +{ + message: '403 - undefined', + level: 'warn', + timestamp: '2020-11-30T11:27:00.186Z' +} +{ + message: '::1 "POST /wallet/transferToExchangeById HTTP/1.1" 403 36 3.372 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:27:00.192Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-11-30T11:27:32.375Z' +} +{ + message: '::1 "POST /wallet/transferToExchangeById HTTP/1.1" 401 186 22.029 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:27:32.383Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 98.046 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:27:42.816Z' +} +{ + message: '::1 "POST /wallet/transferToExchangeById HTTP/1.1" 200 142 42.362 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T11:27:47.263Z' +} +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 89 38.724 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T13:41:42.913Z' +} +{ level: 'warn', timestamp: '2020-11-30T13:42:01.737Z' } +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T13:42:01.738Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 13274.433 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T13:42:01.741Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 42.455 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T13:44:28.486Z' +} +{ level: 'warn', timestamp: '2020-11-30T13:44:46.169Z' } +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T13:44:46.170Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 14581.977 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T13:44:46.173Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 39.461 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T13:46:25.778Z' +} +{ level: 'warn', timestamp: '2020-11-30T13:46:43.381Z' } +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T13:46:43.381Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 13606.412 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T13:46:43.385Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 38.827 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T13:50:47.706Z' +} +{ level: 'warn', timestamp: '2020-11-30T13:51:06.332Z' } +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T13:51:06.333Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 15087.193 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T13:51:06.336Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 39.835 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T15:00:42.169Z' +} +{ level: 'warn', timestamp: '2020-11-30T15:01:01.199Z' } +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:117:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T15:01:01.200Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 15808.868 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T15:01:01.203Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 39.670 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T15:04:19.461Z' +} +{ level: 'warn', timestamp: '2020-11-30T15:04:37.811Z' } +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:117:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T15:04:37.812Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 13868.898 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T15:04:37.815Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 49.575 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T15:14:09.878Z' +} +{ level: 'warn', timestamp: '2020-11-30T15:14:28.319Z' } +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:117:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T15:14:28.319Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 15237.764 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T15:14:28.323Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 48.645 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T15:18:10.257Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 47.857 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T15:20:02.620Z' +} +{ level: 'warn', timestamp: '2020-11-30T15:20:20.113Z' } +{ + message: 'ReferenceError: offerIds is not defined\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:118:143\n' + + ' at step (/home/hamid/projects/exchange/server/routes/wallet.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/routes/wallet.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/routes/wallet.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:124\n' + + ' at attemptTransaction (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/core/sessions.js:354:15)\n' + + ' at ClientSession.withTransaction (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/core/sessions.js:284:12)\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:87\n' + + ' at step (/home/hamid/projects/exchange/server/routes/wallet.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/routes/wallet.js:14:53)\n' + + ' at fulfilled (/home/hamid/projects/exchange/server/routes/wallet.js:5:58)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T15:20:20.115Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 14818.088 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T15:20:20.120Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 51.023 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T15:23:01.046Z' +} +{ + message: myError + at new myError (/home/hamid/projects/exchange/server/api/myError.js:20:28) + at /home/hamid/projects/exchange/server/routes/wallet.js:131:93 + at processTicksAndRejections (internal/process/task_queues.js:97:5) { + messageEnglish: undefined, + statusCode: undefined, + clientCode: undefined, + clientMessage: undefined, + title: undefined + }, + level: 'warn', + timestamp: '2020-11-30T15:23:23.558Z' +} +{ + message: 'Error\n' + + ' at new myError (/home/hamid/projects/exchange/server/api/myError.js:20:28)\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:131:93\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T15:23:23.560Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 14960.112 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T15:23:23.564Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 317.962 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T05:41:46.623Z' +} +{ + message: '::1 "POST /user/getPrice HTTP/1.1" 200 88 236.967 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T05:41:54.844Z' +} +{ + message: myError + at new myError (/home/hamid/projects/exchange/server/api/myError.js:20:28) + at /home/hamid/projects/exchange/server/routes/wallet.js:132:93 + at processTicksAndRejections (internal/process/task_queues.js:97:5) { + messageEnglish: undefined, + statusCode: undefined, + clientCode: undefined, + clientMessage: undefined, + title: undefined + }, + level: 'warn', + timestamp: '2020-12-01T05:42:16.183Z' +} +{ + message: 'Error\n' + + ' at new myError (/home/hamid/projects/exchange/server/api/myError.js:20:28)\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:132:93\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-12-01T05:42:16.184Z' +} +{ + message: '::1 "POST /wallet/buyCurrency HTTP/1.1" 500 192 13853.614 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T05:42:16.187Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 30.107 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:22.960Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 33.337 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:22.963Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 87.508 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:23.064Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 734 10.967 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:23.075Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 880 206.230 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:23.274Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 6.800 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:23.430Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-01T05:52:26.247Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 401 186 8.718 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:26.256Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 880 33.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:26.271Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc3590a7e454c1e01036ac0 HTTP/1.1" 200 1950 112.581 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:26.352Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-01T05:52:45.575Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 401 186 4.376 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:45.581Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 200 605 10.393 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:45.587Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 4.756 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:52:57.510Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.544 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:53:11.188Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 85.507 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:53:11.277Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.987 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:53:11.353Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.954 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:53:11.360Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.359 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:53:11.365Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 14.199 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:53:11.452Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 13.426 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:53:11.453Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.619 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:53:11.554Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 12.839 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:53:13.536Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 200 800 16.744 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:53:13.538Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 20.065 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:58:31.382Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 200 800 23.643 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:58:31.384Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.145 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:58:31.444Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.083 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:58:31.450Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.046 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:58:31.480Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 10.757 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T05:58:31.487Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 18.393 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:00:29.889Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 304 - 28.858 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:00:29.890Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.702 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:00:29.963Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 12.542 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:00:29.974Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 12.888 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:00:29.998Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 21.318 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:00:30.000Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 13.432 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:07:51.611Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 304 - 20.229 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:07:51.611Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.476 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:07:51.676Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.478 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:07:51.684Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.183 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:07:51.693Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.718 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:07:51.696Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 8.900 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:11:30.717Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 304 - 11.790 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:11:30.718Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.683 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:11:30.761Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.101 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:11:30.771Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 10.161 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:11:30.787Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 10.434 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:11:30.789Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 19.098 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:14:10.088Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 304 - 23.465 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:14:10.091Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 6.604 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:14:10.162Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.381 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:14:10.165Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 3.621 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:14:10.173Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 8.378 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:14:10.176Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 304 - 9.726 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:15:31.324Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 4.823 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:15:31.332Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.456 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:15:31.369Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.520 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:15:31.375Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.242 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:15:31.384Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 5.858 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:15:31.385Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 8.040 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:16:24.307Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 304 - 10.875 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:16:24.309Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 5.322 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:16:24.381Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.913 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:16:24.383Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.859 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:16:24.394Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 6.715 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:16:24.395Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.531Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.550Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.554Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 7.150 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.562Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.564Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.569Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.571Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 16.428 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.574Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 28.702 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.575Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 32.467 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.578Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.586Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 35.448 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.589Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.597Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 35.368 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.605Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 7.176 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.607Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 27.634 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.614Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.617Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 30.319 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.621Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.626Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.630Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 15.014 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.634Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.636Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 15.616 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.638Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.640Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 18.888 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.642Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.645Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 17.417 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.650Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 9.539 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.652Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 13.575 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.658Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.661Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.665Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.670Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.676Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.679Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.682Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 17.936 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 25.087 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.683Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 14.230 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.684Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 22.754 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.690Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 21.199 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.691Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 9.901 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.692Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.694Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.697Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.699Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 9.396 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.702Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 9.966 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.703Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 11.532 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.704Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.729Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.732Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.735Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 7.685 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.736Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 8.597 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.738Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 9.934 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.743Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.748Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.753Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.761Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.763Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 10.169 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.764Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 14.634 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.766Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.769Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.771Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 17.812 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.773Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 22.057 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.773Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 12.221 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.778Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 16.637 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.778Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.782Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.788Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.790Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.792Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 10.653 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.794Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.795Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.797Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 14.087 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.801Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 13.696 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 16.733 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.802Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 11.707 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.803Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 14.460 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.804Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.805Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 5.754 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.809Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.811Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.813Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 5.107 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.815Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 6.431 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.816Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.837Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 5.758 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.841Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.846Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.853Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 8.836 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.857Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.865Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 11.970 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.869Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.874Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.890Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 18.514 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.892Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 14.841 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.893Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 31.947 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.898Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.917Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.926Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.935Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 22.756 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.940Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 29.840 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.941Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T06:18:13.944Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 23.689 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.946Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 14.239 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:18:13.947Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 9.717 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:19:16.672Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 304 - 14.389 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:19:16.675Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 3.085 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:19:16.755Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.469 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:19:16.760Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.080 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:19:16.766Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 2.920 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T06:19:16.769Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 130 336.636 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T12:27:44.981Z' +} +{ + message: '::1 "GET / HTTP/1.1" 404 139 24.093 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36" \n', + level: 'info', + timestamp: '2020-11-29T12:28:24.169Z' +} +{ + message: '::1 "GET /user/testTRONTransferTo HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T12:33:36.251Z' +} +{ + message: '::1 "GET /user/testTRONTransferTo HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T12:43:55.452Z' +} +{ + message: '::1 "GET /user/testTRONTransferTo HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T12:57:04.736Z' +} +{ + message: '::1 "GET /user/testTRONTransferTo HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T13:03:18.275Z' +} +{ + message: '::1 "GET /user/testTRONTransferTo HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T13:36:06.354Z' +} +{ + message: '::1 "GET /user/testTRONTransferTo HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-29T13:38:32.391Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 130 226.058 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T14:02:56.709Z' +} +{ level: 'warn', timestamp: '2020-11-30T14:03:03.337Z' } +{ + message: 'TypeError: TRONTransferTo_1.TRONTransferTo is not a function\n' + + ' at /Users/Kwin/Documents/exchange/server/routes/user.js:83:22\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:47:42)\n' + + ' at step (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:33:23)\n' + + ' at Object.next (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:14:53)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:4:12)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:41:47\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at Function.process_params (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:335:12)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:174:3)', + level: 'error', + timestamp: '2020-11-30T14:03:03.338Z' +} +{ + message: '::1 "GET /user/testTRONTransferTo HTTP/1.1" 500 192 32.798 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T14:03:03.344Z' +} +{ level: 'warn', timestamp: '2020-11-30T14:05:35.729Z' } +{ + message: 'TypeError: TRONTransferTo_1.TRONTransferTo is not a function\n' + + ' at /Users/Kwin/Documents/exchange/server/routes/user.js:83:22\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:47:42)\n' + + ' at step (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:33:23)\n' + + ' at Object.next (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:14:53)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:4:12)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:41:47\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at Function.process_params (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:335:12)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:174:3)', + level: 'error', + timestamp: '2020-11-30T14:05:35.733Z' +} +{ + message: '::1 "GET /user/testTRONTransferTo HTTP/1.1" 500 192 126.697 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T14:05:35.761Z' +} +{ level: 'warn', timestamp: '2020-11-30T14:05:37.460Z' } +{ + message: 'TypeError: TRONTransferTo_1.TRONTransferTo is not a function\n' + + ' at /Users/Kwin/Documents/exchange/server/routes/user.js:83:22\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:47:42)\n' + + ' at step (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:33:23)\n' + + ' at Object.next (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:14:53)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:4:12)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:41:47\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at Function.process_params (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:335:12)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:174:3)', + level: 'error', + timestamp: '2020-11-30T14:05:37.460Z' +} +{ + message: '::1 "GET /user/testTRONTransferTo HTTP/1.1" 500 192 30.024 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T14:05:37.467Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 130 237.295 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T14:24:33.538Z' +} +{ + message: '::1 "GET /user/validateByTXId HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T14:33:14.617Z' +} +{ + message: '::1 "POST /user/addCurrency HTTP/1.1" 200 92 71.969 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T14:39:55.561Z' +} +{ + message: '::1 "GET /user/TRONTransferFrom HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-11-30T14:57:28.465Z' +} +<<<<<<< HEAD +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 24.352 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:04:30.591Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 200 803 57.612 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:04:30.603Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.254 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:04:30.808Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 12.972 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:04:30.847Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 12.888 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:04:30.854Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 17.866 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:04:30.858Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/getPrice HTTP/1.1" 204 0 0.604 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:04:42.187Z' +} +{ + message: '422 - currency is required!', + level: 'warn', + timestamp: '2020-12-01T08:04:42.211Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 422 170 20.176 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:04:42.214Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 19.373 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:07:02.750Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 200 936 38.927 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:07:02.752Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 304 - 4.599 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:07:03.000Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.700 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:07:03.013Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 17.074 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:07:03.041Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 304 - 15.467 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:07:03.044Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/getPrice HTTP/1.1" 204 0 0.737 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:07:12.670Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/getPrice HTTP/1.1" 200 88 32.584 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:07:12.709Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /wallet/sellCurrency HTTP/1.1" 204 0 0.290 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:07:18.175Z' +} +{ + message: '::ffff:127.0.0.1 "POST /wallet/sellCurrency HTTP/1.1" 200 91 237.360 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-01T08:07:18.417Z' +} +======= +{ message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-01T07:46:16.417Z' } +{ message: + '::1 "GET /wallet/getEtheriumNonce?etheriumAccountAddress=0xC1BC3cB61722c959030aF512883F2E884baF5702 HTTP/1.1" 401 186 28.385 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:46:16.442Z' } +{ message: + '::1 "POST /auth/login HTTP/1.1" 200 130 152.193 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:46:21.850Z' } +{ level: 'warn', timestamp: '2020-12-01T07:46:28.414Z' } +{ message: + 'Error: Invalid JSON RPC response: ""\n at Object.InvalidResponse (/home/elliot/Desktop/exchange/server/node_modules/web3-core-helpers/lib/errors.js:43:16)\n at XMLHttpRequest.request.onreadystatechange (/home/elliot/Desktop/exchange/server/node_modules/web3-providers-http/lib/index.js:95:32)\n at XMLHttpRequestEventTarget.dispatchEvent (/home/elliot/Desktop/exchange/server/node_modules/xhr2-cookies/dist/xml-http-request-event-target.js:34:22)\n at XMLHttpRequest._setReadyState (/home/elliot/Desktop/exchange/server/node_modules/xhr2-cookies/dist/xml-http-request.js:208:14)\n at XMLHttpRequest._onHttpRequestError (/home/elliot/Desktop/exchange/server/node_modules/xhr2-cookies/dist/xml-http-request.js:349:14)\n at ClientRequest. (/home/elliot/Desktop/exchange/server/node_modules/xhr2-cookies/dist/xml-http-request.js:252:61)\n at ClientRequest.emit (events.js:198:13)\n at Socket.socketErrorListener (_http_client.js:401:9)\n at Socket.emit (events.js:198:13)\n at emitErrorNT (internal/streams/destroy.js:91:8)\n at emitErrorAndCloseNT (internal/streams/destroy.js:59:3)\n at process._tickCallback (internal/process/next_tick.js:63:19)', + level: 'error', + timestamp: '2020-12-01T07:46:28.415Z' } +{ message: + '::1 "GET /wallet/getEtheriumNonce?etheriumAccountAddress=0xC1BC3cB61722c959030aF512883F2E884baF5702 HTTP/1.1" 500 192 25.282 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:46:28.421Z' } +{ message: + '::1 "GET /wallet/getEtheriumNonce?etheriumAccountAddress=0xC1BC3cB61722c959030aF512883F2E884baF5702 HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:48:23.204Z' } +{ message: + '::1 "GET /wallet/getEtheriumNonce?etheriumAccountAddress=0xC1BC3cB61722c959030aF512883F2E884baF5702 HTTP/1.1" 200 88 12178.733 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:48:37.775Z' } +{ message: '400 - you do not have enough currency ', + level: 'warn', + timestamp: '2020-12-01T07:52:57.172Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 400 186 35.555 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:52:57.175Z' } +{ message: '400 - you do not have enough currency ', + level: 'warn', + timestamp: '2020-12-01T07:53:41.784Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 400 186 13.708 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:53:41.789Z' } +{ message: '400 - you do not have enough currency ', + level: 'warn', + timestamp: '2020-12-01T07:53:59.650Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 400 186 15.758 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:53:59.654Z' } +{ message: '400 - you do not have enough currency ', + level: 'warn', + timestamp: '2020-12-01T07:55:18.215Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 400 186 10.236 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:55:18.218Z' } +{ message: '400 - you do not have enough currency ', + level: 'warn', + timestamp: '2020-12-01T07:56:24.730Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 400 186 56.544 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:56:24.744Z' } +{ message: '400 - you do not have enough currency ', + level: 'warn', + timestamp: '2020-12-01T07:56:26.533Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 400 186 22.385 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:56:26.538Z' } +{ message: '400 - you do not have enough currency ', + level: 'warn', + timestamp: '2020-12-01T07:56:28.782Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 400 186 15.286 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:56:28.785Z' } +{ message: '400 - you do not have enough currency ', + level: 'warn', + timestamp: '2020-12-01T07:57:42.416Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 400 186 55.244 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:57:42.431Z' } +{ level: 'warn', timestamp: '2020-12-01T07:59:30.207Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:637:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T07:59:30.210Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 500 192 25213.647 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T07:59:30.220Z' } +{ level: 'warn', timestamp: '2020-12-01T09:19:21.375Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:637:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:19:21.378Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 500 192 24167.514 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T09:19:21.394Z' } +{ level: 'warn', timestamp: '2020-12-01T09:22:40.739Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:637:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:22:40.743Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 500 192 64175.868 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T09:22:40.753Z' } +{ level: 'warn', timestamp: '2020-12-01T09:24:51.024Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:637:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:24:51.027Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 500 192 5120.405 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T09:24:51.038Z' } +{ level: 'warn', timestamp: '2020-12-01T09:29:06.012Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:637:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:29:06.016Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 500 192 64176.188 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T09:29:06.026Z' } +{ level: 'warn', timestamp: '2020-12-01T09:32:17.101Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:638:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:32:17.106Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 500 192 36098.721 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T09:32:17.116Z' } +{ level: 'warn', timestamp: '2020-12-01T09:33:48.717Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:638:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:33:48.720Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 500 192 13091.114 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T09:33:48.732Z' } +{ level: 'warn', timestamp: '2020-12-01T09:59:28.381Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:638:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:59:28.385Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 500 192 4174.392 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T09:59:28.403Z' } +{ level: 'warn', timestamp: '2020-12-01T10:06:01.892Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:638:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T10:06:01.895Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 500 192 60118.081 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T10:06:01.908Z' } +{ level: 'warn', timestamp: '2020-12-01T10:07:40.837Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:638:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T10:07:40.840Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 500 192 25078.413 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T10:07:40.850Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 200 50 16153.866 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T10:18:52.039Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 200 50 22113.993 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T10:21:44.018Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 200 50 11120.670 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T10:24:33.892Z' } +{ message: '400 - currency not found in user wallet', + level: 'warn', + timestamp: '2020-12-01T10:53:51.527Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 400 172 38.659 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T10:53:51.540Z' } +{ message: 'error in with transaction', + level: 'warn', + timestamp: '2020-12-01T10:55:15.502Z' } +{ message: undefined, + level: 'error', + timestamp: '2020-12-01T10:55:15.506Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 500 192 70.925 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T10:55:15.516Z' } +{ message: + '::1 "POST /wallet/transferFromExchange HTTP/1.1" 200 50 95265.019 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T10:57:07.214Z' } +{ level: 'warn', timestamp: '2020-12-01T11:37:59.353Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:682:19', + level: 'error', + timestamp: '2020-12-01T11:37:59.354Z' } +{ message: + '::1 "POST /wallet/transferToExchangeById HTTP/1.1" 500 192 73.976 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T11:37:59.362Z' } +{ message: + '::1 "POST /wallet/transferToExchangeById HTTP/1.1" 200 50 26.906 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T11:38:55.854Z' } +{ message: + '::1 "POST /wallet/transferToExchangeById HTTP/1.1" 200 50 71.718 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T11:44:34.143Z' } +{ level: 'warn', timestamp: '2020-12-01T11:50:53.155Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:682:19\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T11:50:53.158Z' } +{ message: + '::1 "POST /wallet/transferToExchangeById HTTP/1.1" 500 192 76.601 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-01T11:50:53.171Z' } +>>>>>>> 4be0d296f2866dd261cbcb2e6b5cc1e48f72ba60 +{ message: 'kl', level: 'warn', timestamp: '2020-12-03T08:12:25.057Z' } +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:12:25.060Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 62 23.379 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:12:25.065Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 21.997 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:12:25.068Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden-bitcoin.png HTTP/1.1" 200 101690 4.901 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:12:25.582Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 4.748 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:12:25.587Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 1.141 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:12:25.588Z' +} +{ message: 'kl', level: 'warn', timestamp: '2020-12-03T08:17:36.115Z' } +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:17:36.116Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 8.684 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:17:36.120Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 13.539 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:17:36.121Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdha3P HTTP/1.1" 404 149 2.060 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:19.999Z' +} +{ message: 'kl', level: 'warn', timestamp: '2020-12-03T08:18:20.158Z' } +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:18:20.159Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 5.526 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:20.165Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 11.020 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:20.166Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhaId HTTP/1.1" 404 149 1.923 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:20.975Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhax5 HTTP/1.1" 404 149 1.855 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:23.564Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhbok HTTP/1.1" 404 149 1.044 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:27.122Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhd1J HTTP/1.1" 404 149 3.523 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:32.156Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdheFd HTTP/1.1" 404 149 1.067 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:37.164Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhfTt HTTP/1.1" 404 149 1.893 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:42.176Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhgiA HTTP/1.1" 404 149 1.719 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:47.186Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhhwV HTTP/1.1" 404 149 1.847 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:52.200Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhj8p HTTP/1.1" 404 149 1.786 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:18:57.211Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhkN7 HTTP/1.1" 404 149 1.764 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:02.223Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhlbR HTTP/1.1" 404 149 1.309 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:07.234Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhmpj HTTP/1.1" 404 149 1.734 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:12.245Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhnQh HTTP/1.1" 404 149 1.163 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:14.736Z' +} +{ message: 'kl', level: 'warn', timestamp: '2020-12-03T08:19:14.894Z' } +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:19:14.895Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 7.722 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:14.898Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 10.388 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:14.899Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhnnB HTTP/1.1" 404 149 1.759 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:16.180Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhoSI HTTP/1.1" 404 149 1.547 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:18.936Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhp1W HTTP/1.1" 404 149 1.744 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:21.319Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhqMa HTTP/1.1" 404 149 1.356 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:26.762Z' +} +{ message: 'kl', level: 'warn', timestamp: '2020-12-03T08:19:26.936Z' } +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:19:26.937Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 4.055 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:26.941Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 62 6.624 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:26.945Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhqj8 HTTP/1.1" 404 149 1.218 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:28.207Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhrCK HTTP/1.1" 404 149 1.780 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:30.203Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhrlC HTTP/1.1" 404 149 1.852 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:32.436Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhszW HTTP/1.1" 404 149 1.652 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:37.448Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhuBp HTTP/1.1" 404 149 1.696 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:42.460Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhvQ7 HTTP/1.1" 404 149 1.688 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:47.470Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhweO HTTP/1.1" 404 149 1.700 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:52.480Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhxsh HTTP/1.1" 404 149 1.672 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:19:57.491Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdhz4- HTTP/1.1" 404 149 1.537 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:20:02.501Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdh-JH HTTP/1.1" 404 149 1.635 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:20:07.513Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdh_Xb HTTP/1.1" 404 149 1.671 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:20:12.526Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdi5el HTTP/1.1" 404 149 12.374 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:20:37.578Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdi6tJ HTTP/1.1" 404 149 3.518 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:20:47.939Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdi9PD HTTP/1.1" 404 149 1.727 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:20:52.949Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdiAdV HTTP/1.1" 404 149 1.759 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:20:57.958Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdiBrm HTTP/1.1" 404 149 1.748 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:21:02.968Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdiD43 HTTP/1.1" 404 149 1.824 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:21:07.978Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdiEIK HTTP/1.1" 404 149 1.718 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:21:12.987Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdiFWb HTTP/1.1" 404 149 1.482 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:21:17.996Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdiGks HTTP/1.1" 404 149 1.506 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:21:23.006Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdiHz8 HTTP/1.1" 404 149 1.001 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:21:28.014Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdiJBO HTTP/1.1" 404 149 1.446 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:21:33.024Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdiKPg HTTP/1.1" 404 149 1.961 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:21:38.034Z' +} +{ + message: '::ffff:127.0.0.1 "GET /socket.io/?EIO=4&transport=polling&t=NOdiLdy HTTP/1.1" 404 149 1.720 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:21:43.044Z' +} +{ message: 'kl', level: 'warn', timestamp: '2020-12-03T08:22:39.859Z' } +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:22:39.860Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 500 192 15.039 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:22:39.870Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 26.670 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:22:39.871Z' +} +{ + message: '::1 "POST /admin/register HTTP/1.1" 200 119 105.744 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T08:22:53.611Z' +} +{ + message: '400 - Email or Password are not valid!', + level: 'warn', + timestamp: '2020-12-03T08:22:57.012Z' +} +{ + message: '::1 "POST /admin/login HTTP/1.1" 400 204 6.856 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T08:22:57.015Z' +} +{ + message: '::1 "POST /admin/addCurrency HTTP/1.1" 200 92 6645.405 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T08:24:34.405Z' +} +{ + message: '400 - Email or Password are not valid!', + level: 'warn', + timestamp: '2020-12-03T08:24:36.566Z' +} +{ + message: '::1 "POST /admin/login HTTP/1.1" 400 204 11.749 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T08:24:36.568Z' +} +{ + message: '::1 "POST /admin/login HTTP/1.1" 200 124 80.988 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T08:24:49.842Z' +} +{ + message: '400 - this currency is already exsis', + level: 'warn', + timestamp: '2020-12-03T08:24:52.969Z' +} +{ + message: '::1 "POST /admin/addCurrency HTTP/1.1" 400 181 6.091 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T08:24:52.971Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 193 11.127 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:25:16.114Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 39 10.643 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:25:16.116Z' +} +{ + message: '::1 "POST /admin/addCurrency HTTP/1.1" 200 92 7.579 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T08:25:49.610Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 388 10.927 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:25:53.086Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 11.045 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:25:53.088Z' +} +{ + errno: -2, + syscall: 'open', + code: 'ENOENT', + path: './images/coins/golden_bitcoin.png', + level: 'warn', + timestamp: '2020-12-03T08:25:53.140Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:423:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at Function.process_params (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:410:3)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:174:3)\n' + + ' at router (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:47:12)', + level: 'error', + timestamp: '2020-12-03T08:25:53.140Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 500 192 6.125 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:25:53.144Z' +} +{ + errno: -2, + syscall: 'open', + code: 'ENOENT', + path: './images/coins/golden_bitcoin.png', + level: 'warn', + timestamp: '2020-12-03T08:26:33.511Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:423:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at Function.process_params (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:410:3)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:174:3)\n' + + ' at router (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:47:12)', + level: 'error', + timestamp: '2020-12-03T08:26:33.511Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 500 192 3.799 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:26:33.514Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 9.328 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:26:33.619Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 8.765 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:26:33.621Z' +} +{ + message: '::1 "POST /admin/addCurrency HTTP/1.1" 200 92 8.086 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T08:27:42.680Z' +} +{ + message: '::1 "POST /admin/addCurrency HTTP/1.1" 200 92 7.021 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T08:28:05.858Z' +} +{ + errno: -2, + syscall: 'open', + code: 'ENOENT', + path: './images/coins/golden_bitcoin.png', + level: 'warn', + timestamp: '2020-12-03T08:28:10.423Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:423:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at Function.process_params (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:410:3)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:174:3)\n' + + ' at router (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:47:12)', + level: 'error', + timestamp: '2020-12-03T08:28:10.424Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 500 192 4.888 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:28:10.428Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 39 7.059 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:28:10.529Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 10.083 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:28:10.530Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.990 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:28:10.569Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.161 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:28:10.579Z' +} +{ + errno: -2, + syscall: 'open', + code: 'ENOENT', + path: './images/coins/golden_bitcoin.png', + level: 'warn', + timestamp: '2020-12-03T08:28:45.668Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:423:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at Function.process_params (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:410:3)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:174:3)\n' + + ' at router (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:47:12)', + level: 'error', + timestamp: '2020-12-03T08:28:45.669Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 500 192 5.496 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:28:45.675Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.754 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:28:45.685Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.597 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:28:45.731Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 5.662 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:28:45.800Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 8.757 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:28:45.804Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 200 101690 2.583 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:29:14.726Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.884 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:29:14.737Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.490 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:29:14.739Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 5.302 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:29:14.832Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 9.417 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:29:14.845Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T08:29:18.639Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 39 11.552 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:29:18.643Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 6.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:29:18.643Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:29:18.645Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 16.541 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:29:18.651Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T08:30:02.853Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 4.328 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:30:02.857Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:30:02.860Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 11.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:30:02.866Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 18.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:30:02.868Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T08:30:36.486Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 7.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:30:36.498Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 23.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:30:36.499Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:30:36.499Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 23.819 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:30:36.502Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T08:30:55.229Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 12.038 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:30:55.233Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 5.104 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:30:55.234Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:30:55.234Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 17.185 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:30:55.237Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T08:34:22.437Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 13.249 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:34:22.450Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:34:22.453Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 37.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:34:22.468Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 38.174 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:34:22.471Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 11.380 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:38:32.562Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 8.697 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:38:32.570Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.808 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:38:32.576Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 7.670 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:38:32.663Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 7.010 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:38:32.693Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T08:38:35.976Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:38:35.985Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 19.268 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:38:35.987Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 7.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:38:35.989Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 27.475 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:38:35.991Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T08:39:30.349Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 8.939 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:39:30.357Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 16.325 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:39:30.360Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:39:30.362Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 19.874 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:39:30.365Z' +} +{ + message: '::1 "POST /auth/register HTTP/1.1" 200 149 107.609 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T08:40:14.638Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 3.800 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:40:40.924Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.591 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:40:53.571Z' +} +{ + message: '400 - Email or Password are not valid!', + level: 'warn', + timestamp: '2020-12-03T08:40:53.582Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 400 213 7.548 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:40:53.584Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.408 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:09.609Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 84.534 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:09.698Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 3.833 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:09.789Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.543 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:09.803Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 10.809 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:09.804Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 13.159 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:09.876Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 39 12.220 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:09.881Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 7.543 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:12.354Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:41:12.363Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 19.536 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:12.371Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 45 22.920 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:12.372Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 2.793 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:49.694Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.934 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:49.708Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 9.129 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:49.710Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 17.922 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:49.800Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 14.428 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:49.801Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 9.362 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:59.058Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:41:59.062Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 13.036 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:59.066Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 14.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:41:59.072Z' +} +{ + message: '::ffff:127.0.0.1 "POST /tickets/register HTTP/1.1" - - - "-" "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" \n', + level: 'info', + timestamp: '2020-12-03T08:42:14.642Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 14.174 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:49:06.437Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 11.453 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:49:06.439Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 12.722 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:49:06.440Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 21.067 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:49:06.491Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 19.367 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:49:06.496Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:49:08.683Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 18.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:49:08.685Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 13.462 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:49:08.691Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 17.664 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:49:08.692Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 12.592 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:50:02.971Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 11.571 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:50:02.978Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 14.636 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:50:05.747Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:50:05.754Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 17.074 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:50:05.757Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 11.530 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:50:05.758Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 8.759 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:50:41.375Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 14.378 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:50:41.385Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 8.937 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:50:46.818Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:50:46.826Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 14.254 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:50:46.830Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 10.092 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:50:46.831Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 8.113 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:51:46.716Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:51:46.741Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 9.599 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:51:46.748Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 12.897 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:51:46.751Z' +} +{ + message: '::ffff:127.0.0.1 "GET /onlineLoginUsers HTTP/1.1" 404 155 4.237 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:52:05.303Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 2.715 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:52:44.928Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.665 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:53:03.829Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 100.299 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:53:03.937Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 3.259 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:53:04.025Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.570 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:53:04.035Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.485 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:53:04.041Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 12.359 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:53:04.131Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 16.170 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:53:04.140Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 15.029 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:53:15.521Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:53:15.527Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 13.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:53:15.530Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 12.389 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:53:15.531Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 23.804 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:54:39.058Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 13.170 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:54:39.061Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 10.583 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:54:41.031Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:54:41.045Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 27.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:54:41.049Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 25.453 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:54:41.051Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 23.258 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:57:20.440Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 16.787 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:57:20.443Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 15.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:57:24.481Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:57:24.485Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 21.635 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:57:24.490Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 15.359 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:57:24.492Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 18.082 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:57:59.125Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:57:59.130Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 14.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:57:59.133Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 20.821 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:57:59.135Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 7.818 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:59:07.612Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 13.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:59:07.631Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:59:07.633Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 15.655 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:59:07.637Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 200 101690 3.549 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:59:19.886Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.154 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:59:19.905Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 2.653 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:59:19.910Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 15.649 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:59:20.010Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 15.361 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:59:20.018Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 7.292 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:59:24.632Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T08:59:24.641Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 14.120 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:59:24.648Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 13.209 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T08:59:24.651Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:00:47.282Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 12.739 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:00:47.290Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 13.111 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:00:47.292Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 20.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:00:47.298Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 2.922 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:14.231Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.467 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:14.245Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.325 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:14.255Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 6.816 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:14.334Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 12.358 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:14.354Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 6.765 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:16.835Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:01:16.849Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 29.449 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:16.854Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 15.123 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:16.858Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:01:43.777Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 10.875 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:43.782Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 11.470 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:43.784Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 21.446 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:43.795Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 3.435 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:01:57.411Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.757 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:02:10.774Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 104.526 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:02:10.888Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 200 101690 2.992 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:02:10.969Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.061 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:02:10.984Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 5.646 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:02:10.994Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 19.546 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:02:11.099Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 23.958 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:02:11.101Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 11.646 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:02:16.978Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:02:16.981Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 15.333 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:02:16.985Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 15.664 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:02:17.001Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:06:34.603Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 11.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:06:34.607Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 10.886 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:06:34.607Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 11.004 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:06:34.608Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 2.866 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:06:51.233Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.849 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:06:51.243Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 2.842 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:06:51.249Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 8.029 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:06:51.337Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 11.327 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:06:51.346Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:06:53.678Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 21.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:06:53.680Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 16.768 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:06:53.682Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 15.997 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:06:53.683Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 9.318 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:07:17.530Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:07:17.537Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 10.010 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:07:17.540Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 10.571 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:07:17.547Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 27.575 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:09:52.621Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:09:52.624Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 28.828 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:09:52.628Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 25.633 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:09:52.630Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 12.583 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:10:49.347Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 9.121 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:10:49.356Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 9.530 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:10:49.357Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 7.980 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:10:49.445Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 8.115 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:10:49.486Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:10:51.248Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 22.991 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:10:51.257Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 24.478 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:10:51.258Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 24.807 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:10:51.264Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 17.511 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:11:44.125Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:11:44.128Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 18.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:11:44.133Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 17.983 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:11:44.134Z' +} +{ + message: 'Client connected [id=qEmmK-qfGcDSU0-AAAAF]', + level: 'info', + timestamp: '2020-12-03T09:11:44.612Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 2.907 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:12:11.016Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.633 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:12:11.031Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 5.277 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:12:11.034Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 12.678 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:12:11.133Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 10.435 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:12:11.137Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:12:45.388Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 11.430 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:12:45.391Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 14.032 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:12:45.394Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 12.777 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:12:45.398Z' +} +{ + message: 'Client connected [id=bpRdhmtl7LiFD3SPAAAH]', + level: 'info', + timestamp: '2020-12-03T09:12:45.405Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 6.101 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:15:31.869Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:15:31.917Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 41.441 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:15:31.930Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 46.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:15:31.932Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 3.052 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:15:42.932Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.944 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:15:42.946Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.967 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:15:42.954Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 13.435 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:15:43.048Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 10.890 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:15:43.051Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 11.423 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:15:47.727Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:15:47.734Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 25.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:15:47.745Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 27.969 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:15:47.748Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 17.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:16:21.844Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:16:21.846Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 23.445 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:16:21.851Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 22.300 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:16:21.865Z' +} +{ + message: 'Client connected [id=hOV8QCsaWs08Ys60AAAN]', + level: 'info', + timestamp: '2020-12-03T09:16:22.403Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:18:39.802Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 26.204 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:18:39.806Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 28.843 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:18:39.808Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 23.099 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:18:39.808Z' +} +{ + message: 'Client connected [id=9daNEFJSVSTaYBd5AAAP]', + level: 'info', + timestamp: '2020-12-03T09:18:40.436Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 200 101690 2.923 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:18:49.631Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.166 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:18:49.655Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 4.141 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:18:49.658Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 33.963 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:18:49.772Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 17.954 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:18:49.776Z' +} +{ + message: 'Client connected [id=QwK0vwCDUhWktIhiAAAR]', + level: 'info', + timestamp: '2020-12-03T09:19:02.818Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:19:02.831Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 24.483 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:19:02.833Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 29.665 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:19:02.839Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 26.906 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:19:02.841Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 9.901 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:19:17.988Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 5.379 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:19:17.988Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 11.535 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:19:24.717Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:19:24.723Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 9.170 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:19:24.724Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 9.480 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:19:24.725Z' +} +{ + message: 'Client connected [id=m94xsR0xd-1NN48NAAAT]', + level: 'info', + timestamp: '2020-12-03T09:19:24.738Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:20:17.042Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 9.901 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:20:17.045Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 14.502 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:20:17.046Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 11.741 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:20:17.047Z' +} +{ + message: 'Client connected [id=GhsArFi9cTTDgvj0AAAV]', + level: 'info', + timestamp: '2020-12-03T09:20:17.726Z' +} +{ + message: 'Client connected [id=zVwdD_UiB5m4-qazAAAB]', + level: 'info', + timestamp: '2020-12-03T09:36:02.568Z' +} +{ + message: 'Client connected [id=DZe3ZUYXU6-1JUSlAAAB]', + level: 'info', + timestamp: '2020-12-03T09:36:53.934Z' +} +{ + message: 'Client connected [id=VDGOmYukWpYRxelAAAAB]', + level: 'info', + timestamp: '2020-12-03T09:38:06.295Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T09:49:12.864Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 12.482 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:49:12.893Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:49:12.895Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 39 50.003 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:49:12.901Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 42.127 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:49:12.907Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 200 101690 4.993 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:49:21.674Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 200 1489190 7.175 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:49:21.684Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 4.682 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:49:21.689Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 32.968 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:49:21.816Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 39 28.691 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:49:21.819Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T09:49:25.599Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:49:25.601Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 17.784 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:49:25.603Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 11.288 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:49:25.604Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 20.114 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:49:25.606Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T09:50:31.494Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 5.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:50:31.498Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:50:31.505Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 17.378 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:50:31.515Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 16.849 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:50:31.519Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 8.510 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:54:57.033Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T09:54:57.048Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:54:57.051Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 20.815 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:54:57.056Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 11.500 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:54:57.058Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 2.786 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:09.513Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.108 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:09.528Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 2.588 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:09.531Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 6.300 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:09.631Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 24.586 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:09.654Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 2.609 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:24.983Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.515 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:24.999Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 6.291 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:25.014Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 10.048 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:25.222Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 10.202 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:25.226Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T09:55:34.013Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 7.964 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:34.018Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 7.275 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:34.022Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:55:34.030Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 23.316 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:34.034Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 7.970 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:39.031Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 6.640 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:39.038Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 2.617 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:47.127Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 5.314 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:47.140Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.395 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:47.147Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 8.770 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:47.347Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 8.735 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:47.351Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T09:55:49.696Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 6.873 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:49.700Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 13.950 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:49.703Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T09:55:49.704Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 15.867 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:49.709Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 13.227 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:52.228Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 9.844 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T09:55:52.232Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T10:00:13.310Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 401 186 5.195 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:00:13.314Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T10:00:13.317Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 12.836 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:00:13.319Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 12.633 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:00:13.320Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T10:06:08.670Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 401 186 21.739 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T10:06:08.677Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" 200 129 95.466 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T10:06:16.652Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 17.796 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T10:06:24.985Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 17.383 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T10:06:38.640Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 14.465 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T10:06:53.194Z' +} +{ + message: '::1 "POST /user/addCurrencyValue HTTP/1.1" 200 53 14.082 "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-03T10:07:10.031Z' +} +{ + message: '401 - unauthorized cookie', + level: 'warn', + timestamp: '2020-12-03T10:07:17.111Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 401 186 5.179 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:07:17.117Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 200 609 11.477 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:07:17.133Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 3.724 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:07:28.132Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.563 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:07:47.322Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 84.583 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:07:47.411Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 9.133 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:07:47.534Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 8.109 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:07:47.536Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.763 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:07:47.543Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 39 8.062 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:07:47.711Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 11.799 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:07:47.712Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserWallet HTTP/1.1" 200 920 13.798 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:08:19.472Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=2 HTTP/1.1" 304 - 12.070 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:08:19.473Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_rial.png HTTP/1.1" 200 374512 3.700 "http://localhost:3000/wallet" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:08:19.572Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T10:08:23.608Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 23.262 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:08:23.610Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 27.452 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:08:23.614Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 45 23.912 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:08:23.616Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 14.142 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:09:02.046Z' +} +{ + message: '400 - there is not any active offer in network', + level: 'warn', + timestamp: '2020-12-03T10:09:02.047Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 400 198 14.622 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:09:02.051Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 16.940 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:09:02.053Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.440 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:09:24.272Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 31.570 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:09:24.311Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 413 8.644 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:09:24.380Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 55.023 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:16:31.937Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 426 35.265 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:16:31.949Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 36.180 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:16:31.950Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.512 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:16:59.761Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 49.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:16:59.821Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 782 8.895 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:16:59.895Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 22.158 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:18:53.305Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 808 23.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:18:53.345Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 26.523 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:18:53.352Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 0.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:19:08.069Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 53.766 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:19:08.129Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1151 10.697 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:19:08.191Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /user/createOffer HTTP/1.1" 204 0 2.747 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:22:07.377Z' +} +{ + message: '::ffff:127.0.0.1 "POST /user/createOffer HTTP/1.1" 200 115 59.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:22:07.442Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1521 16.256 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:22:07.523Z' +} +{ + message: 'Client connected [id=taAiYOzSL6wRp6P5AAAB]', + level: 'info', + timestamp: '2020-12-03T10:28:16.337Z' +} +{ + message: 'Client connected [id=bshBrTXj4ENJRn9aAAAB]', + level: 'info', + timestamp: '2020-12-03T10:28:59.603Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 13.720 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:13.296Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 10.983 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:13.298Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 11.264 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:13.299Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 39 14.566 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:13.402Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 36.926 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:13.425Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 8.111 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:34.754Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 7.213 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:34.755Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 4.702 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:34.759Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 17.303 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:34.851Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 17.068 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:34.854Z' +} +{ + message: 'Client connected [id=n3ICWiYvK-fi09guAAAD]', + level: 'info', + timestamp: '2020-12-03T10:29:37.134Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 19.058 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:37.146Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1573 23.491 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:37.147Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 26.862 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:29:37.149Z' +} +{ + message: 'Client connected [id=u3izs8Kth_X_pry3AAAB]', + level: 'info', + timestamp: '2020-12-03T10:30:59.976Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 11.282 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:31:34.815Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.441 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:31:46.671Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 111.146 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:31:46.785Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 4.038 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:31:46.864Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 7.880 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:31:46.872Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 3.160 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:31:46.876Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 16.754 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:31:46.965Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 17.250 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:31:46.968Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 17.674 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:31:54.997Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 23.981 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:31:55.004Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 19.662 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:31:55.006Z' +} +{ + message: 'Client connected [id=RtBvk3GIzxgrz0qcAAAD]', + level: 'info', + timestamp: '2020-12-03T10:31:55.010Z' +} +{ + message: 'Client connected [id=JB29UZ8NvH9QOJkLAAAB]', + level: 'info', + timestamp: '2020-12-03T10:33:15.628Z' +} +{ + message: 'Client connected [id=JuV9sOjQIzH1TV1DAAAD]', + level: 'info', + timestamp: '2020-12-03T10:33:21.039Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 39.558 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:33:21.068Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 30.788 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:33:21.070Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 33.595 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:33:21.076Z' +} +{ + message: 'Client connected [id=7wuK-qnu8z3sFOPMAAAB]', + level: 'info', + timestamp: '2020-12-03T10:35:19.735Z' +} +{ + message: 'Client connected [id=yqt28ZoUmZPBGoRbAAAD]', + level: 'info', + timestamp: '2020-12-03T10:35:28.714Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 38.786 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:35:28.736Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 36.369 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:35:28.740Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1521 43.408 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:35:28.746Z' +} +{ + message: 'Client connected [id=ycTtE1B2fIHoiPt5AAAB]', + level: 'info', + timestamp: '2020-12-03T10:37:12.317Z' +} +{ + message: 'Client connected [id=jQc67NVmPkKn4V6KAAAB]', + level: 'info', + timestamp: '2020-12-03T10:40:00.860Z' +} +{ + message: 'Client connected [id=h4xIQqem-gHltvSAAAAB]', + level: 'info', + timestamp: '2020-12-03T10:42:16.636Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 10.785 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:42:27.813Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.868 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:42:39.424Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 116.876 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:42:39.546Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 3.906 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:42:39.615Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.039 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:42:39.626Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 18.950 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:42:39.646Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 18.237 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:42:39.732Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 22.931 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:42:39.734Z' +} +{ + message: 'Client connected [id=3skT8lGTZCFJOUFqAAAD]', + level: 'info', + timestamp: '2020-12-03T10:42:47.192Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 24.857 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:42:47.212Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 29.774 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:42:47.214Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 30.147 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:42:47.215Z' +} +{ + message: 'Client connected [id=Za456KVWpNiTqDNOAAAB]', + level: 'info', + timestamp: '2020-12-03T10:59:12.408Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 33.339 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:59:17.868Z' +} +{ + message: 'Client connected [id=6hP9Rw_vRG0pA45-AAAD]', + level: 'info', + timestamp: '2020-12-03T10:59:17.870Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 37.677 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:59:17.884Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 42.116 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T10:59:17.885Z' +} +{ + message: 'Client connected [id=Q7BXOv7kpgDN9w6lAAAB]', + level: 'info', + timestamp: '2020-12-03T11:02:16.098Z' +} +{ + message: 'Client connected [id=O4yU1PAOrbVcS90MAAAD]', + level: 'info', + timestamp: '2020-12-03T11:02:24.871Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 38.679 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T11:02:24.888Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 36.770 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T11:02:24.891Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 38.776 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T11:02:24.893Z' +} +{ + message: 'Client connected [id=-xMDm4aMOMFNzB7LAAAB]', + level: 'info', + timestamp: '2020-12-03T11:04:15.152Z' +} +{ + message: 'Client connected [id=p4C8Oy91_mkeX19FAAAD]', + level: 'info', + timestamp: '2020-12-03T11:04:29.457Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 34.723 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T11:04:29.469Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 36.877 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T11:04:29.482Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 40.163 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T11:04:29.484Z' +} +{ + message: 'Client connected [id=w0AeoN8ldvtOaydVAAAB]', + level: 'info', + timestamp: '2020-12-03T11:09:32.000Z' +} +{ + message: 'Client connected [id=pmkK0RjI4EkazW4BAAAB]', + level: 'info', + timestamp: '2020-12-03T11:20:33.332Z' +} +{ + message: 'Client connected [id=2DBvwD2eTQT5WflUAAAB]', + level: 'info', + timestamp: '2020-12-03T11:21:02.399Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 28.722 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T11:21:51.874Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 29.340 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T11:21:51.888Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 31.141 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T11:21:51.889Z' +} +{ + message: 'Client connected [id=EWhUN3jlO6E52Jb4AAAB]', + level: 'info', + timestamp: '2020-12-03T12:58:31.433Z' +} +{ + message: 'Client connected [id=vUP1g_oBsy1au5m0AAAD]', + level: 'info', + timestamp: '2020-12-03T12:58:40.541Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 39 35.182 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T12:58:40.549Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1573 32.290 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T12:58:40.551Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1521 39.219 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T12:58:40.555Z' +} +{ + message: 'Client connected [id=dA9rT_ilKr75SyoEAAAB]', + level: 'info', + timestamp: '2020-12-03T13:01:39.467Z' +} +{ + message: 'Client connected [id=uZxjJdB0xHMay2NJAAAD]', + level: 'info', + timestamp: '2020-12-03T13:01:45.455Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 34.879 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:01:45.478Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 33.065 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:01:45.481Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 36.407 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:01:45.484Z' +} +{ + message: 'Client connected [id=eNCWroBXW9O2I9PXAAAB]', + level: 'info', + timestamp: '2020-12-03T13:02:23.437Z' +} +{ + message: 'Client connected [id=vw_mOYl0Y_KhZM7-AAAB]', + level: 'info', + timestamp: '2020-12-03T13:12:24.317Z' +} +{ + message: 'Client connected [id=52TL5K3JY7rdRrkLAAAB]', + level: 'info', + timestamp: '2020-12-03T13:18:54.640Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 27.224 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:19:35.484Z' +} +{ + message: 'Client connected [id=plh1fKiW-YBOUzvFAAAD]', + level: 'info', + timestamp: '2020-12-03T13:19:35.486Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 39.896 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:19:35.499Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 39.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:19:35.502Z' +} +{ + message: 'Client connected [id=TPfBgocEHPiU9q0hAAAB]', + level: 'info', + timestamp: '2020-12-03T13:22:26.008Z' +} +{ + message: 'Client connected [id=rpH89ve_vXp4FXamAAAD]', + level: 'info', + timestamp: '2020-12-03T13:22:31.936Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 38.927 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:22:31.960Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 37.039 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:22:31.962Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 38.698 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:22:31.963Z' +} +{ + message: 'Client connected [id=UO8JjcrxJaMxfatkAAAB]', + level: 'info', + timestamp: '2020-12-03T13:26:08.338Z' +} +{ + message: 'Client connected [id=JVCpF_lYG8K5gpWXAAAD]', + level: 'info', + timestamp: '2020-12-03T13:26:18.076Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 39 59.557 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:26:18.128Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1573 54.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:26:18.130Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 55.617 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:26:18.131Z' +} +{ + message: 'Client connected [id=NrBhGuNuffcvCuyPAAAB]', + level: 'info', + timestamp: '2020-12-03T13:29:09.699Z' +} +{ + message: 'Client connected [id=8xBmAiMoQuO0oFBpAAAB]', + level: 'info', + timestamp: '2020-12-03T13:35:47.627Z' +} +{ + message: 'Client connected [id=Qfo3U05rmNPzpV41AAAB]', + level: 'info', + timestamp: '2020-12-03T13:36:46.109Z' +} +{ + message: 'Client connected [id=Go585fPAfrAcA4GcAAAD]', + level: 'info', + timestamp: '2020-12-03T13:36:55.479Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 29.230 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:36:55.505Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 36.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:36:55.521Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 36.842 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:36:55.523Z' +} +{ + message: 'Client connected [id=_VlffzqhQ16Hpfd8AAAB]', + level: 'info', + timestamp: '2020-12-03T13:41:55.438Z' +} +{ + message: 'Client connected [id=nuaQ5yw1v17pLnM5AAAB]', + level: 'info', + timestamp: '2020-12-03T13:42:28.147Z' +} +{ + message: 'Client connected [id=z9L5-jAxhz1r2g9xAAAB]', + level: 'info', + timestamp: '2020-12-03T13:44:10.112Z' +} +{ + message: 'Client connected [id=UIJXdzSzVcAPI_B8AAAB]', + level: 'info', + timestamp: '2020-12-03T13:47:43.134Z' +} +{ + message: 'Client connected [id=vqFiCgFbcTt9zncHAAAB]', + level: 'info', + timestamp: '2020-12-03T13:48:11.742Z' +} +{ + message: 'Client connected [id=MM4bV4w1XGdIVeAlAAAB]', + level: 'info', + timestamp: '2020-12-03T13:48:46.018Z' +} +{ + message: 'Client connected [id=yuthwaceYRrh52IrAAAB]', + level: 'info', + timestamp: '2020-12-03T13:50:01.684Z' +} +{ + message: 'Client connected [id=GWI9GhWAWcgYJuvnAAAB]', + level: 'info', + timestamp: '2020-12-03T13:51:07.767Z' +} +{ + message: 'Client connected [id=MKdR3LsaTWQEMUrgAAAB]', + level: 'info', + timestamp: '2020-12-03T13:51:42.400Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 23.056 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:51:55.364Z' +} +{ + message: 'Client connected [id=Tg4-nAYc4lZW8x1RAAAD]', + level: 'info', + timestamp: '2020-12-03T13:51:55.374Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 26.962 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:51:55.392Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 28.730 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T13:51:55.396Z' +} +{ + message: 'Client connected [id=vzP0DCuRiNO9t9MhAAAB]', + level: 'info', + timestamp: '2020-12-03T15:01:20.054Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 39 27.719 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:01:39.250Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1573 35.241 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:01:39.268Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1521 35.149 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:01:39.270Z' +} +{ + message: 'Client connected [id=6g4OMEM1_yV900_yAAAD]', + level: 'info', + timestamp: '2020-12-03T15:01:39.379Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 39 34.485 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:04:13.985Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1521 31.837 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:04:13.987Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1573 35.929 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:04:13.993Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 35.373 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:05:46.568Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 29.361 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:05:46.571Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 32.183 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:05:46.572Z' +} +{ + message: 'Client connected [id=2G5Wj2ljET8ZAsqsAAAB]', + level: 'info', + timestamp: '2020-12-03T15:08:47.231Z' +} +{ + message: 'Client connected [id=-UHmkWeN80CL8rBFAAAB]', + level: 'info', + timestamp: '2020-12-03T15:09:32.116Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 34.578 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:09:52.936Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 33.164 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:09:52.938Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 200 1521 33.795 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:09:52.944Z' +} +{ + message: 'Client connected [id=N6eXkEw4QPXa_LE7AAAD]', + level: 'info', + timestamp: '2020-12-03T15:09:52.994Z' +} +{ + message: 'Client connected [id=PclPC5QkmvaQOGSAAAAB]', + level: 'info', + timestamp: '2020-12-03T15:12:13.876Z' +} +{ + message: 'Client connected [id=XatS6yXwdbTVgTXpAAAB]', + level: 'info', + timestamp: '2020-12-03T15:13:10.350Z' +} +{ + message: 'Client connected [id=T7F8GudtQOVzRIqwAAAB]', + level: 'info', + timestamp: '2020-12-03T15:13:39.521Z' +} +{ + message: 'Client connected [id=BMeXsPrMVFImuMkSAAAB]', + level: 'info', + timestamp: '2020-12-03T15:18:49.243Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 34.593 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:21:03.063Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 62.515 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:21:03.069Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 40.073 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:21:03.075Z' +} +{ + message: 'Client connected [id=Re97-eRRoAV7kD8MAAAB]', + level: 'info', + timestamp: '2020-12-03T15:22:05.502Z' +} +{ + message: 'Client connected [id=RBk1-D1dhrfjmICuAAAB]', + level: 'info', + timestamp: '2020-12-03T15:22:54.807Z' +} +{ + message: 'Client connected [id=2j8GcMd_dlQeR2ieAAAB]', + level: 'info', + timestamp: '2020-12-03T15:23:25.386Z' +} +{ + message: 'Client connected [id=v_IAbDoCV8NaHsnDAAAB]', + level: 'info', + timestamp: '2020-12-03T15:24:16.139Z' +} +{ + message: 'Client connected [id=iqr1HFAsodrNVwDbAAAB]', + level: 'info', + timestamp: '2020-12-03T15:25:03.989Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 46.544 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:29:21.909Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 46.908 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:29:21.911Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 46.281 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:29:21.912Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 200 101690 14.541 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:31:53.438Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 200 1489190 13.857 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:31:53.440Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 200 97935 16.684 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:31:53.442Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 200 738 13.624 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:31:53.512Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 200 39 22.606 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:31:53.535Z' +} +{ + message: '127.0.0.1 "GET /svgs/arrow-left.svg HTTP/1.1" 404 158 2.952 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:32:05.229Z' +} +{ + message: '::ffff:127.0.0.1 "OPTIONS /auth/login HTTP/1.1" 204 0 0.416 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:32:19.755Z' +} +{ + message: '::ffff:127.0.0.1 "POST /auth/login HTTP/1.1" 200 129 108.058 "http://localhost:3000/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:32:19.866Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_bitcoin.png HTTP/1.1" 304 - 3.061 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:32:19.943Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_eth.png HTTP/1.1" 304 - 6.663 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:32:19.954Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getImages/coins/golden_tron.png HTTP/1.1" 304 - 6.022 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:32:19.955Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=undefined HTTP/1.1" 304 - 8.598 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:32:20.034Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getCurrencies?type=1 HTTP/1.1" 304 - 11.366 "http://localhost:3000/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:32:20.038Z' +} +{ + message: 'Client connected [id=L65QhAmYoI9ALe9aAAAB]', + level: 'info', + timestamp: '2020-12-03T15:32:49.150Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getDeafultAcceptedOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 25.993 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:32:49.168Z' +} +{ + message: '::ffff:127.0.0.1 "GET /service/getActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 37.307 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:32:49.179Z' +} +{ + message: '::ffff:127.0.0.1 "GET /user/getUserActiveOffers?curIdOp=5fc8a10de4fd5c6bac73b97f HTTP/1.1" 304 - 36.126 "http://localhost:3000/charts?cur=BTC" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" \n', + level: 'info', + timestamp: '2020-12-03T15:32:49.181Z' +} +{ + message: 'getaddrinfo ENOTFOUND 9109769f43e4', + reason: TopologyDescription { + type: 'ReplicaSetNoPrimary', + setName: 'rs0', + maxSetVersion: 1, + maxElectionId: 7fffffff0000000000000005, + servers: Map(1) { + '9109769f43e4:27017' => ServerDescription { + address: '9109769f43e4:27017', + error: Error: getaddrinfo ENOTFOUND 9109769f43e4 + at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:67:26) { + name: 'MongoNetworkError' + }, + roundTripTime: -1, + lastUpdateTime: 155175990, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] + } + }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: 9 + }, + level: 'error', + timestamp: '2020-12-05T13:27:41.314Z' +} +{ + message: '::1 "POST /auth/login HTTP/1.1" - - - "-" "PostmanRuntime/7.26.8" \n', + level: 'info', + timestamp: '2020-12-05T13:27:47.746Z' +} +{ + message: 'The find action on User Collection with email undefined has some errors: MongooseError: Operation `users.findOne()` buffering timed out after 10000ms', + level: 'error', + timestamp: '2020-12-05T13:27:51.158Z' +} +{ + message: '500 - Error happened during the login!', + level: 'warn', + timestamp: '2020-12-05T13:27:51.160Z' +} +{ + message: 'getaddrinfo ENOTFOUND 9109769f43e4', + reason: TopologyDescription { + type: 'ReplicaSetNoPrimary', + setName: 'rs0', + maxSetVersion: 1, + maxElectionId: 7fffffff0000000000000005, + servers: Map(1) { + '9109769f43e4:27017' => ServerDescription { + address: '9109769f43e4:27017', + error: Error: getaddrinfo ENOTFOUND 9109769f43e4 + at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:67:26) { + name: 'MongoNetworkError' + }, + roundTripTime: -1, + lastUpdateTime: 155925743, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] + } + }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: 9 + }, + level: 'error', + timestamp: '2020-12-05T13:40:11.212Z' +} +{ + message: 'getaddrinfo ENOTFOUND 9109769f43e4', + reason: TopologyDescription { + type: 'ReplicaSetNoPrimary', + setName: 'rs0', + maxSetVersion: 1, + maxElectionId: 7fffffff0000000000000005, + servers: Map(1) { + '9109769f43e4:27017' => ServerDescription { + address: '9109769f43e4:27017', + error: Error: getaddrinfo ENOTFOUND 9109769f43e4 + at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:67:26) { + name: 'MongoNetworkError' + }, + roundTripTime: -1, + lastUpdateTime: 156197995, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] + } + }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: 9 + }, + level: 'error', + timestamp: '2020-12-05T13:44:43.435Z' +} diff --git a/server/db/acceptedOffers.js b/server/db/acceptedOffers.js new file mode 100755 index 0000000..85dc4c3 --- /dev/null +++ b/server/db/acceptedOffers.js @@ -0,0 +1,51 @@ +"use strict"; +exports.__esModule = true; +exports.Accepted_Offers = void 0; +var mongoose = require("mongoose"); +var schemaOptions = { + timestamps: { createdAt: 'created_at' } +}; +var acceptedOffers = new mongoose.Schema({ + buyOrderId: { + type: String, + required: false + }, + acceptor: { + type: mongoose.ObjectId, + required: true + }, + creator: { + type: mongoose.ObjectId, + required: true + }, + offerId: { + type: String, + required: true, + unique: true + }, + curGivenId: { + type: mongoose.ObjectId, + required: true + }, + curGivenVal: { + type: Number, + required: true + }, + curTakenId: { + type: mongoose.ObjectId, + required: true + }, + curTakenVal: { + type: Number, + required: true + }, + offeredDate: { + type: Date, + required: true + }, + expiredDate: { + type: Date, + required: true + } +}, schemaOptions); +exports.Accepted_Offers = mongoose.model('AcceptedOffers', acceptedOffers); diff --git a/server/db/acceptedOffers.ts b/server/db/acceptedOffers.ts new file mode 100755 index 0000000..b3be9a0 --- /dev/null +++ b/server/db/acceptedOffers.ts @@ -0,0 +1,57 @@ +import * as mongoose from 'mongoose' + +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, + }; +const acceptedOffers = new mongoose.Schema({ + + buyOrderId:{ + type: String, + required: false, + }, + + acceptor : { + type: mongoose.ObjectId, + required: true + }, + creator: { + type:mongoose.ObjectId, + + required:true, + }, + offerId: { + type: String, + required: true, + unique: true + }, + curGivenId:{ + type: mongoose.ObjectId, + required: true + }, + curGivenVal:{ + type: Number, + required: true + }, + curTakenId:{ + type: mongoose.ObjectId, + required: true + }, + curTakenVal:{ + type: Number, + required: true + }, + offeredDate:{ + type:Date, + required: true, + }, + expiredDate:{ + type:Date, + required: true, + }, + +}, schemaOptions ) + + +export const Accepted_Offers = mongoose.model('AcceptedOffers', acceptedOffers) + + diff --git a/server/db/activeOffers.js b/server/db/activeOffers.js new file mode 100755 index 0000000..4cde926 --- /dev/null +++ b/server/db/activeOffers.js @@ -0,0 +1,46 @@ +"use strict"; +exports.__esModule = true; +exports.Active_Offers = void 0; +var mongoose = require("mongoose"); +var schemaOptions = { + timestamps: { createdAt: 'created_at' } +}; +var activeOffers = new mongoose.Schema({ + userId: { + type: mongoose.ObjectId, + required: true + }, + offerId: { + type: String, + required: true, + unique: true + }, + rank: { + type: Number, + min: 1, + max: 5, + "default": 1 + }, + curGivenId: { + type: mongoose.ObjectId, + required: true + }, + curGivenVal: { + type: Number, + required: true + }, + curTakenId: { + type: mongoose.ObjectId, + required: true + }, + curTakenVal: { + type: Number, + required: true + }, + expDate: { + type: Date, + required: true, + "default": Date.now() + } +}, schemaOptions); +exports.Active_Offers = mongoose.models.ActiveOffers || mongoose.model('ActiveOffers', activeOffers); diff --git a/server/db/activeOffers.ts b/server/db/activeOffers.ts new file mode 100755 index 0000000..7ecab98 --- /dev/null +++ b/server/db/activeOffers.ts @@ -0,0 +1,49 @@ +import * as mongoose from 'mongoose' + +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, + }; + +const activeOffers = new mongoose.Schema({ + + userId : { + type: mongoose.ObjectId, + required: true + }, + offerId:{ + type: String, + required: true, + unique: true + }, + rank: { + type: Number, + min: 1, + max: 5, + default: 1 + }, + curGivenId:{ + type: mongoose.ObjectId, + required: true + }, + curGivenVal:{ + type: Number, + required: true + }, + curTakenId:{ + type: mongoose.ObjectId, + required: true + }, + curTakenVal:{ + type: Number, + required: true + }, + expDate:{ + type:Date, + required: true, + default: Date.now() + } +}, schemaOptions ) + + + +export const Active_Offers = mongoose.models.ActiveOffers || mongoose.model('ActiveOffers', activeOffers) diff --git a/server/db/admin.js b/server/db/admin.js new file mode 100755 index 0000000..18e1886 --- /dev/null +++ b/server/db/admin.js @@ -0,0 +1,108 @@ +"use strict"; +exports.__esModule = true; +exports.Admin = void 0; +var mongoose = require("mongoose"); +var bcrypt = require("bcrypt"); +var adminSchema = new mongoose.Schema({ + name: { + type: String + }, + lastName: { + type: String + }, + email: { + type: String, + required: true, + trim: true, + unique: 1 + }, + isActive: { + type: Boolean, + required: true, + "default": true + }, + password: { + type: String, + required: true, + minlength: 6, + trim: true + }, + role: { + type: String, + required: true, + "enum": ['Admin', 'Manager', 'Supporter'] + }, + wallet: [ + { + currency: { + type: mongoose.ObjectId, + required: true + }, + value: { + type: Number, + required: true, + "default": 0 + } + } + ], + adminActivities: [ + { + action: { + type: String, + required: true + }, + timestamp: { + type: Date + }, + device: { + type: String + }, + loginDeviceId: {}, + ip: { + type: String + } + } + ] +}); +// This functions will execute if the password field is modified. +adminSchema.pre('save', function (next) { + var user = this; + if (user.isModified('password')) { + bcrypt.genSalt(Number(process.env.SALT_I)) + .then(function (salt) { + bcrypt.hash(user.password, salt) + .then(function (hash) { + user.password = hash; + next(); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + } + else { + next(); + } +}); +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. +adminSchema.methods.comparePassword = function (candidatePassword, cb) { + bcrypt.compare(candidatePassword, this.password, function (err, isMatch) { + if (err) + return cb(err); + cb(null, isMatch); + }); +}; +adminSchema.methods.comparePasswordPromise = function (candidatePassword) { + var _this = this; + return new Promise(function (resolve, reject) { + bcrypt.compare(candidatePassword, _this.password) + .then(function (isMatch) { + resolve(isMatch); + })["catch"](function (err) { + reject(err); + }); + }); +}; +exports.Admin = mongoose.model('Admin', adminSchema); diff --git a/server/db/admin.ts b/server/db/admin.ts new file mode 100755 index 0000000..179f711 --- /dev/null +++ b/server/db/admin.ts @@ -0,0 +1,111 @@ +import * as mongoose from 'mongoose' +import * as bcrypt from 'bcrypt' + + +const adminSchema = new mongoose.Schema({ + name: { + type: String + }, + lastName: { + type: String + }, + email: { + type: String, + required: true, + trim: true, + unique: 1 + }, + isActive: { + type: Boolean, + required: true, + default: true + }, + password: { + type: String, + required: true, + minlength: 6, + trim: true + }, + role: { + type: String, + required: true, + enum: ['Admin', 'Manager', 'Supporter'] + }, + wallet: [ + { + currency: { + type:mongoose.ObjectId, + required:true, + }, + value: { + type:Number, + required:true, + default:0, + } + } + ], + adminActivities: [ + { + action: { + type: String, + required: true + }, + timestamp: { + type: Date + }, + device: { + type: String + }, + loginDeviceId: {}, + ip: { + type: String + } + } + ] +}) + +// This functions will execute if the password field is modified. +adminSchema.pre('save', function (next) { + var user = this + if (user.isModified('password')) { + bcrypt.genSalt(Number(process.env.SALT_I)) + .then((salt) => { + bcrypt.hash(user.password, salt) + .then((hash) => { + user.password = hash + next() + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) +} else { + next() +} +}) + +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. +adminSchema.methods.comparePassword = function (candidatePassword, cb) { + bcrypt.compare(candidatePassword, this.password, function (err, isMatch) { + if (err) return cb(err) + cb(null, isMatch) + }) +} + +adminSchema.methods.comparePasswordPromise = function (candidatePassword) { + return new Promise((resolve, reject) => { + bcrypt.compare(candidatePassword, this.password) + .then(function(isMatch) { + resolve(isMatch) + }) + .catch((err) => { + reject(err) + }) + }) +} + +export const Admin = mongoose.model('Admin', adminSchema) diff --git a/server/db/buyOrder.ts b/server/db/buyOrder.ts new file mode 100755 index 0000000..ed3ebb6 --- /dev/null +++ b/server/db/buyOrder.ts @@ -0,0 +1,42 @@ +import * as mongoose from 'mongoose' +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, + }; +const buyOrder = new mongoose.Schema({ + currencyId : { + type : mongoose.ObjectId, + required : true, + } + , + id:{ + type: String, + required: true, + unique: true + }, + + + transferredValue : { + type : Number, + required : true, + default : 0, + }, + + userId : { + type : mongoose.ObjectId, + required: true + }, + value : { + type : Number, + //required : true, + //default : 0, + }, + shouldBuyValue : { + type: Number, + required : true, + default : 0, + } + + +},schemaOptions) +export const BuyOrder = mongoose.model('buyOrder', buyOrder) + diff --git a/server/db/continuesPriceStats.js b/server/db/continuesPriceStats.js new file mode 100755 index 0000000..dec85b6 --- /dev/null +++ b/server/db/continuesPriceStats.js @@ -0,0 +1,24 @@ +"use strict"; +exports.__esModule = true; +exports.ContinuesPriceStat = void 0; +var mongoose = require("mongoose"); +var continuesPriceStat = new mongoose.Schema({ + name: { + type: String, + required: true, + unique: true + }, + currencyPriceHistory: [ + { + currencyId: { + type: mongoose.ObjectId, + required: true + }, + price: { + type: Number, + required: true + } + } + ] +}); +exports.ContinuesPriceStat = mongoose.model('continuesPriceStat', continuesPriceStat); diff --git a/server/db/continuesPriceStats.ts b/server/db/continuesPriceStats.ts new file mode 100755 index 0000000..cce3e05 --- /dev/null +++ b/server/db/continuesPriceStats.ts @@ -0,0 +1,25 @@ +import * as mongoose from 'mongoose' + +const continuesPriceStat = new mongoose.Schema({ + name:{ + type:String, + required:true, + unique: true, + }, + currencyPriceHistory:[ + { + currencyId : { + type : mongoose.ObjectId, + required:true, + }, + price: { + type : Number, + required:true + } + + } + ] + +}) + +export const ContinuesPriceStat = mongoose.model('continuesPriceStat', continuesPriceStat) diff --git a/server/db/currencies.js b/server/db/currencies.js new file mode 100755 index 0000000..551c21d --- /dev/null +++ b/server/db/currencies.js @@ -0,0 +1,36 @@ +"use strict"; +exports.__esModule = true; +exports.Currencies = void 0; +var mongoose = require("mongoose"); +var currencies = new mongoose.Schema({ + name: { + type: String, + required: true, + "enum": ['RIAL', 'BITCOIN', 'TRON', 'ETHEREUM'], + unique: true + }, + per_name: { + type: String, + required: true, + "enum": ['ریال', 'بیت کوین', 'ترون', 'اتریوم'], + unique: true + }, + ab_name: { + type: String, + required: true, + "enum": ['IRR', 'BTC', 'TRX', 'ETH'], + unique: true + }, + icon: { + type: String + }, + quantity: { + type: Number, + //required: true, + "default": 0 + } + // value:{ + // type:Number, + // }, +}); +exports.Currencies = mongoose.model('currencies', currencies); diff --git a/server/db/currencies.ts b/server/db/currencies.ts new file mode 100755 index 0000000..76f74a3 --- /dev/null +++ b/server/db/currencies.ts @@ -0,0 +1,37 @@ +import * as mongoose from 'mongoose' + +const currencies = new mongoose.Schema({ + name:{ + type:String, + required:true, + enum: ['RIAL', 'BITCOIN', 'TRON', 'ETHEREUM'], + unique: true, + }, + per_name:{ + type:String, + required:true, + enum:['ریال', 'بیت کوین','ترون','اتریوم'], + unique: true, + }, + ab_name:{ + type:String, + required:true, + enum: ['IRR', 'BTC', 'TRX', 'ETH'], + unique: true, + }, + icon:{ + type:String, + //required:true, + //unique: true, + }, + quantity:{ + type: Number, + //required: true, + default: 0 + } + // value:{ + // type:Number, + // }, +}) + +export const Currencies = mongoose.model('currencies', currencies) diff --git a/server/db/dailyPriceStats.js b/server/db/dailyPriceStats.js new file mode 100755 index 0000000..d43de2b --- /dev/null +++ b/server/db/dailyPriceStats.js @@ -0,0 +1,28 @@ +"use strict"; +exports.__esModule = true; +exports.DailyPriceStat = void 0; +var mongoose = require("mongoose"); +var dailyPriceStat = new mongoose.Schema({ + name: { + type: String, + required: true, + unique: true + }, + currencyPriceHistory: [ + { + currencyId: { + type: mongoose.ObjectId, + required: true + }, + price: { + type: Number, + required: true + }, + volume: { + type: Number, + required: true + } + } + ] +}); +exports.DailyPriceStat = mongoose.model('dailyPriceStat', dailyPriceStat); diff --git a/server/db/dailyPriceStats.ts b/server/db/dailyPriceStats.ts new file mode 100755 index 0000000..ef11ec3 --- /dev/null +++ b/server/db/dailyPriceStats.ts @@ -0,0 +1,28 @@ +import * as mongoose from 'mongoose' + +const dailyPriceStat = new mongoose.Schema({ + name:{ + type:String, + required:true, + unique: true + }, + currencyPriceHistory:[ + { + currencyId : { + type : mongoose.ObjectId, + required:true + }, + price: { + type : Number, + required:true + }, + volume:{ + type: Number, + required : true + } + } + ] + +}) + +export const DailyPriceStat = mongoose.model('dailyPriceStat', dailyPriceStat) diff --git a/server/db/failedTransfers.ts b/server/db/failedTransfers.ts new file mode 100755 index 0000000..c2228a4 --- /dev/null +++ b/server/db/failedTransfers.ts @@ -0,0 +1,41 @@ +import * as mongoose from 'mongoose' + +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, + }; +const failedTransfers = new mongoose.Schema({ + + + + userId : { + type: mongoose.ObjectId, + required: true + }, + transactions:[ + { + txId:{ + type : String, + required : true + }, + currencyId : { + type : mongoose.ObjectId, + required : true + }, + currencyName : { + type : String + }, + value:{ + type: Number, + required: true + }, + type:{ + type:String, + required:true, + enum: ['send','receive'], + + } + + } + ] +}, schemaOptions ) +export const FailedTransfers = mongoose.model('FailedTransfers', failedTransfers) \ No newline at end of file diff --git a/server/db/getPrice.js b/server/db/getPrice.js new file mode 100755 index 0000000..a9ddef3 --- /dev/null +++ b/server/db/getPrice.js @@ -0,0 +1,25 @@ +"use strict"; +exports.__esModule = true; +exports.GetPrice = void 0; +var mongodb_1 = require("mongodb"); +var mongoose = require("mongoose"); +var getPrice = new mongoose.Schema({ + currency: { + type: mongodb_1.ObjectID, + required: true + }, + userId: { + type: mongoose.ObjectId, + required: true + }, + quantity: { + type: Number, + required: true + }, + rialPricePerUnit: { + type: Number, + "default": 0 + }, + createdAt: { type: Date, expires: 20, "default": Date.now } +}, { timestamp: true }); +exports.GetPrice = mongoose.model('getPrice', getPrice); diff --git a/server/db/getPrice.ts b/server/db/getPrice.ts new file mode 100755 index 0000000..bf95d8e --- /dev/null +++ b/server/db/getPrice.ts @@ -0,0 +1,24 @@ +import { ObjectID } from 'mongodb' +import * as mongoose from 'mongoose' + +const getPrice = new mongoose.Schema({ + currency: { + type:ObjectID, + required: true + }, + userId : { + type: mongoose.ObjectId, + required: true + }, + quantity: { + type:Number, + required: true + }, + rialPricePerUnit: { + type:Number, + default: 0 + }, + createdAt: { type: Date, expires: 20, default: Date.now } +},{ timestamp: true }) + +export const GetPrice = mongoose.model('getPrice', getPrice) diff --git a/server/db/globalDailyPrice.js b/server/db/globalDailyPrice.js new file mode 100755 index 0000000..18d8af2 --- /dev/null +++ b/server/db/globalDailyPrice.js @@ -0,0 +1,26 @@ +"use strict"; +exports.__esModule = true; +exports.GlobalDailyPrice = void 0; +var mongoose = require("mongoose"); +var globalDailyPriceSchema = new mongoose.Schema({ + timeStamp: { + type: Date + }, + currencyId: { + type: mongoose.ObjectId + }, + price: { + price: { + type: Number + }, + min: { type: Number }, + max: { type: Number } + }, + volume: { + type: Number + } +}); +// This functions will execute if the password field is modified. +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. +exports.GlobalDailyPrice = mongoose.model('GlobalDailyPrice', globalDailyPriceSchema); diff --git a/server/db/globalDailyPrice.ts b/server/db/globalDailyPrice.ts new file mode 100755 index 0000000..2952af6 --- /dev/null +++ b/server/db/globalDailyPrice.ts @@ -0,0 +1,33 @@ +import * as mongoose from 'mongoose' +import * as bcrypt from 'bcrypt' + + + +const globalDailyPriceSchema = new mongoose.Schema({ + timeStamp: { + type: Date + }, + currencyId: { + type: mongoose.ObjectId + }, + price:{ + price : { + type: Number} + ,min : { type : Number}, + max : {type : Number}, + + + }, + volume : { + type : Number + } + +}) + +// This functions will execute if the password field is modified. + + +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. + +export const GlobalDailyPrice = mongoose.model('GlobalDailyPrice', globalDailyPriceSchema) diff --git a/server/db/globalHourlyPrice.js b/server/db/globalHourlyPrice.js new file mode 100755 index 0000000..a61a0e5 --- /dev/null +++ b/server/db/globalHourlyPrice.js @@ -0,0 +1,30 @@ +"use strict"; +exports.__esModule = true; +exports.GlobalHourlyPrice = void 0; +var mongoose = require("mongoose"); +var globalHourlyPriceSchema = new mongoose.Schema({ + timeStamp: { + type: Date + }, + currencyId: { + type: mongoose.ObjectId + }, + price: { + price: { + type: Number + }, + min: { + type: Number + }, + max: { + type: Number + } + }, + volume: { + type: Number + } +}); +// This functions will execute if the password field is modified. +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. +exports.GlobalHourlyPrice = mongoose.model('GlobalHourlyPrice', globalHourlyPriceSchema); diff --git a/server/db/globalHourlyPrice.ts b/server/db/globalHourlyPrice.ts new file mode 100755 index 0000000..dcdfe66 --- /dev/null +++ b/server/db/globalHourlyPrice.ts @@ -0,0 +1,38 @@ +import * as mongoose from 'mongoose' +import * as bcrypt from 'bcrypt' + + + +const globalHourlyPriceSchema = new mongoose.Schema({ + timeStamp: { + type: Date + }, + currencyId: { + type: mongoose.ObjectId + }, + price:{ + price : + { + type: Number + }, + min :{ + type: Number + }, + max: { + type: Number + } + + }, + volume : { + type : Number + } + +}) + +// This functions will execute if the password field is modified. + + +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. + +export const GlobalHourlyPrice = mongoose.model('GlobalHourlyPrice', globalHourlyPriceSchema) diff --git a/server/db/globalMontlyPrice.js b/server/db/globalMontlyPrice.js new file mode 100755 index 0000000..5d9589d --- /dev/null +++ b/server/db/globalMontlyPrice.js @@ -0,0 +1,30 @@ +"use strict"; +exports.__esModule = true; +exports.GlobalMonthlyPrice = void 0; +var mongoose = require("mongoose"); +var globalMonthlyPriceSchema = new mongoose.Schema({ + timeStamp: { + type: Date + }, + currencyId: { + type: mongoose.ObjectId + }, + price: { + price: { + type: Number + }, + min: { + type: Number + }, + max: { + type: Number + } + }, + volume: { + type: Number + } +}); +// This functions will execute if the password field is modified. +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. +exports.GlobalMonthlyPrice = mongoose.model('GlobalMonthlyPrice', globalMonthlyPriceSchema); diff --git a/server/db/globalMontlyPrice.ts b/server/db/globalMontlyPrice.ts new file mode 100755 index 0000000..e0e812b --- /dev/null +++ b/server/db/globalMontlyPrice.ts @@ -0,0 +1,38 @@ +import * as mongoose from 'mongoose' +import * as bcrypt from 'bcrypt' + + + +const globalMonthlyPriceSchema = new mongoose.Schema({ + timeStamp: { + type: Date + }, + currencyId: { + type: mongoose.ObjectId + }, + price:{ + price : + { + type: Number + }, + min :{ + type: Number + }, + max: { + type: Number + } + + }, + volume : { + type : Number + } + +}) + +// This functions will execute if the password field is modified. + + +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. + +export const GlobalMonthlyPrice = mongoose.model('GlobalMonthlyPrice', globalMonthlyPriceSchema) diff --git a/server/db/globalWeeklyPrice.js b/server/db/globalWeeklyPrice.js new file mode 100755 index 0000000..42126e2 --- /dev/null +++ b/server/db/globalWeeklyPrice.js @@ -0,0 +1,30 @@ +"use strict"; +exports.__esModule = true; +exports.GlobalWeeklyPrice = void 0; +var mongoose = require("mongoose"); +var globalWeeklyPriceSchema = new mongoose.Schema({ + timeStamp: { + type: Date + }, + currencyId: { + type: mongoose.ObjectId + }, + price: { + price: { + type: Number + }, + min: { + type: Number + }, + max: { + type: Number + } + }, + volume: { + type: Number + } +}); +// This functions will execute if the password field is modified. +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. +exports.GlobalWeeklyPrice = mongoose.model('GlobalWeeklyPrice', globalWeeklyPriceSchema); diff --git a/server/db/globalWeeklyPrice.ts b/server/db/globalWeeklyPrice.ts new file mode 100755 index 0000000..7ecf061 --- /dev/null +++ b/server/db/globalWeeklyPrice.ts @@ -0,0 +1,38 @@ +import * as mongoose from 'mongoose' +import * as bcrypt from 'bcrypt' + + + +const globalWeeklyPriceSchema = new mongoose.Schema({ + timeStamp: { + type: Date + }, + currencyId: { + type: mongoose.ObjectId + }, + price:{ + price : + { + type: Number + }, + min :{ + type: Number + }, + max: { + type: Number + } + + }, + volume : { + type : Number + } + +}) + +// This functions will execute if the password field is modified. + + +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. + +export const GlobalWeeklyPrice = mongoose.model('GlobalWeeklyPrice', globalWeeklyPriceSchema) diff --git a/server/db/globalYearlyPrice.js b/server/db/globalYearlyPrice.js new file mode 100755 index 0000000..3f883f8 --- /dev/null +++ b/server/db/globalYearlyPrice.js @@ -0,0 +1,30 @@ +"use strict"; +exports.__esModule = true; +exports.GlobalYearlyPrice = void 0; +var mongoose = require("mongoose"); +var globalYearlyPriceSchema = new mongoose.Schema({ + timeStamp: { + type: Date + }, + currencyId: { + type: mongoose.ObjectId + }, + price: { + price: { + type: Number + }, + min: { + type: Number + }, + max: { + type: Number + } + }, + volume: { + type: Number + } +}); +// This functions will execute if the password field is modified. +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. +exports.GlobalYearlyPrice = mongoose.model('GlobalYearlyPrice', globalYearlyPriceSchema); diff --git a/server/db/globalYearlyPrice.ts b/server/db/globalYearlyPrice.ts new file mode 100755 index 0000000..603d5f4 --- /dev/null +++ b/server/db/globalYearlyPrice.ts @@ -0,0 +1,38 @@ +import * as mongoose from 'mongoose' +import * as bcrypt from 'bcrypt' + + + +const globalYearlyPriceSchema = new mongoose.Schema({ + timeStamp: { + type: Date + }, + currencyId: { + type: mongoose.ObjectId + }, + price:{ + price : + { + type: Number + }, + min :{ + type: Number + }, + max: { + type: Number + } + + }, + volume : { + type : Number + } + +}) + +// This functions will execute if the password field is modified. + + +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. + +export const GlobalYearlyPrice = mongoose.model('GlobalYearlyPrice', globalYearlyPriceSchema) diff --git a/server/db/localDaily.js b/server/db/localDaily.js new file mode 100755 index 0000000..91eef22 --- /dev/null +++ b/server/db/localDaily.js @@ -0,0 +1,38 @@ +"use strict"; +exports.__esModule = true; +exports.LocalDaily = void 0; +var mongoose = require("mongoose"); +var schemaOptions = { + timestamps: { createdAt: 'created_at' } +}; +var localDaily = new mongoose.Schema({ + name: { + type: Date, + required: true + }, + currencies: [ + { + currencyId: { + type: mongoose.ObjectId, + required: true + }, + price: { + type: Number, + required: true + }, + volume: { + type: Number, + required: true + }, + min: { + type: Number, + required: true + }, + max: { + type: Number, + required: true + } + } + ] +}, schemaOptions); +exports.LocalDaily = mongoose.model('localDaily', localDaily); diff --git a/server/db/localDaily.ts b/server/db/localDaily.ts new file mode 100755 index 0000000..050a26b --- /dev/null +++ b/server/db/localDaily.ts @@ -0,0 +1,45 @@ +import { ObjectID } from 'mongodb' +import * as mongoose from 'mongoose' + +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, + }; + +const localDaily = new mongoose.Schema({ + + + name:{ + type: Date, + required: true, + }, + currencies:[ + { + currencyId:{ + type: mongoose.ObjectId, + required: true, + }, + + price:{ + type:Number, + required: true, + + }, + volume:{ + type: Number, + required: true, + + }, + min:{ + type: Number, + required: true, + + }, + max:{ + type: Number, + required: true, + } + }] + +}, schemaOptions) + +export const LocalDaily = mongoose.model('localDaily', localDaily) diff --git a/server/db/localHourly.js b/server/db/localHourly.js new file mode 100755 index 0000000..1090983 --- /dev/null +++ b/server/db/localHourly.js @@ -0,0 +1,38 @@ +"use strict"; +exports.__esModule = true; +exports.LocalHourly = void 0; +var mongoose = require("mongoose"); +var schemaOptions = { + timestamps: { createdAt: 'created_at' } +}; +var localHourly = new mongoose.Schema({ + name: { + type: Date, + required: true + }, + currencies: [ + { + currencyId: { + type: mongoose.ObjectId, + required: true + }, + price: { + type: Number, + required: true + }, + volume: { + type: Number, + required: true + }, + min: { + type: Number, + required: true + }, + max: { + type: Number, + required: true + } + } + ] +}, schemaOptions); +exports.LocalHourly = mongoose.model('localHourly', localHourly); diff --git a/server/db/localHourly.ts b/server/db/localHourly.ts new file mode 100755 index 0000000..78546a9 --- /dev/null +++ b/server/db/localHourly.ts @@ -0,0 +1,42 @@ +import * as mongoose from 'mongoose' + +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, + }; + +const localHourly = new mongoose.Schema({ + name:{ + type: Date, + required: true, + }, + currencies:[ + { + currencyId:{ + type: mongoose.ObjectId, + required: true, + }, + + price:{ + type:Number, + required: true, + + }, + volume:{ + type: Number, + required: true, + + }, + min:{ + type: Number, + required: true, + + }, + max:{ + type: Number, + required: true, + } + }] + +}, schemaOptions) + +export const LocalHourly = mongoose.model('localHourly', localHourly) diff --git a/server/db/localMonthly.js b/server/db/localMonthly.js new file mode 100755 index 0000000..1e50f2b --- /dev/null +++ b/server/db/localMonthly.js @@ -0,0 +1,38 @@ +"use strict"; +exports.__esModule = true; +exports.LocalMonthly = void 0; +var mongoose = require("mongoose"); +var schemaOptions = { + timestamps: { createdAt: 'created_at' } +}; +var localMonthly = new mongoose.Schema({ + name: { + type: Date, + required: true + }, + currencies: [ + { + currencyId: { + type: mongoose.ObjectId, + required: true + }, + price: { + type: Number, + required: true + }, + volume: { + type: Number, + required: true + }, + min: { + type: Number, + required: true + }, + max: { + type: Number, + required: true + } + } + ] +}, schemaOptions); +exports.LocalMonthly = mongoose.model('localMonthly', localMonthly); diff --git a/server/db/localMonthly.ts b/server/db/localMonthly.ts new file mode 100755 index 0000000..2a56066 --- /dev/null +++ b/server/db/localMonthly.ts @@ -0,0 +1,45 @@ +import { ObjectID } from 'mongodb' +import * as mongoose from 'mongoose' + +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, + }; + +const localMonthly = new mongoose.Schema({ + + + name:{ + type: Date, + required: true, + }, + currencies:[ + { + currencyId:{ + type: mongoose.ObjectId, + required: true, + }, + + price:{ + type:Number, + required: true, + + }, + volume:{ + type: Number, + required: true, + + }, + min:{ + type: Number, + required: true, + + }, + max:{ + type: Number, + required: true, + } + }] + +}, schemaOptions) + +export const LocalMonthly = mongoose.model('localMonthly', localMonthly) diff --git a/server/db/localWeekly.js b/server/db/localWeekly.js new file mode 100755 index 0000000..e575724 --- /dev/null +++ b/server/db/localWeekly.js @@ -0,0 +1,38 @@ +"use strict"; +exports.__esModule = true; +exports.LocalWeekly = void 0; +var mongoose = require("mongoose"); +var schemaOptions = { + timestamps: { createdAt: 'created_at' } +}; +var localWeekly = new mongoose.Schema({ + name: { + type: Date, + required: true + }, + currencies: [ + { + currencyId: { + type: mongoose.ObjectId, + required: true + }, + price: { + type: Number, + required: true + }, + volume: { + type: Number, + required: true + }, + min: { + type: Number, + required: true + }, + max: { + type: Number, + required: true + } + } + ] +}, schemaOptions); +exports.LocalWeekly = mongoose.model('localWeekly', localWeekly); diff --git a/server/db/localWeekly.ts b/server/db/localWeekly.ts new file mode 100755 index 0000000..3911c96 --- /dev/null +++ b/server/db/localWeekly.ts @@ -0,0 +1,45 @@ +import { ObjectID } from 'mongodb' +import * as mongoose from 'mongoose' + +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, + }; + +const localWeekly = new mongoose.Schema({ + + + name:{ + type: Date, + required: true, + }, + currencies:[ + { + currencyId:{ + type: mongoose.ObjectId, + required: true, + }, + + price:{ + type:Number, + required: true, + + }, + volume:{ + type: Number, + required: true, + + }, + min:{ + type: Number, + required: true, + + }, + max:{ + type: Number, + required: true, + } + }] + +}, schemaOptions) + +export const LocalWeekly = mongoose.model('localWeekly', localWeekly) diff --git a/server/db/localYearly.js b/server/db/localYearly.js new file mode 100755 index 0000000..eb74ea6 --- /dev/null +++ b/server/db/localYearly.js @@ -0,0 +1,38 @@ +"use strict"; +exports.__esModule = true; +exports.LocalYearly = void 0; +var mongoose = require("mongoose"); +var schemaOptions = { + timestamps: { createdAt: 'created_at' } +}; +var localYearly = new mongoose.Schema({ + name: { + type: Date, + required: true + }, + currencies: [ + { + currencyId: { + type: mongoose.ObjectId, + required: true + }, + price: { + type: Number, + required: true + }, + volume: { + type: Number, + required: true + }, + min: { + type: Number, + required: true + }, + max: { + type: Number, + required: true + } + } + ] +}, schemaOptions); +exports.LocalYearly = mongoose.model('localYearly', localYearly); diff --git a/server/db/localYearly.ts b/server/db/localYearly.ts new file mode 100755 index 0000000..6aab357 --- /dev/null +++ b/server/db/localYearly.ts @@ -0,0 +1,45 @@ +import { ObjectID } from 'mongodb' +import * as mongoose from 'mongoose' + +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, + }; + +const localYearly = new mongoose.Schema({ + + + name:{ + type: Date, + required: true, + }, + currencies:[ + { + currencyId:{ + type: mongoose.ObjectId, + required: true, + }, + + price:{ + type:Number, + required: true, + + }, + volume:{ + type: Number, + required: true, + + }, + min:{ + type: Number, + required: true, + + }, + max:{ + type: Number, + required: true, + } + }] + +}, schemaOptions) + +export const LocalYearly = mongoose.model('localYearly', localYearly) diff --git a/server/db/pendingTransfers.js b/server/db/pendingTransfers.js new file mode 100755 index 0000000..c8feed7 --- /dev/null +++ b/server/db/pendingTransfers.js @@ -0,0 +1,38 @@ +"use strict"; +exports.__esModule = true; +exports.PendingTransfers = void 0; +var mongoose = require("mongoose"); +var schemaOptions = { + timestamps: { createdAt: 'created_at' } +}; +var pendingTransfers = new mongoose.Schema({ + userId: { + type: mongoose.ObjectId, + required: true + }, + transactions: [ + { + txId: { + type: String, + required: true + }, + currencyId: { + type: mongoose.ObjectId, + required: true + }, + currencyName: { + type: String + }, + value: { + type: Number, + required: true + }, + type: { + type: String, + required: true, + "enum": ['send', 'receive'] + } + } + ] +}, schemaOptions); +exports.PendingTransfers = mongoose.model('PendingTransfers', pendingTransfers); diff --git a/server/db/pendingTransfers.ts b/server/db/pendingTransfers.ts new file mode 100755 index 0000000..8b872f9 --- /dev/null +++ b/server/db/pendingTransfers.ts @@ -0,0 +1,38 @@ +import * as mongoose from 'mongoose' + +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, +}; + +const pendingTransfers = new mongoose.Schema({ + userId : { + type: mongoose.ObjectId, + required: true + }, + transactions: [ + { + txId: { + type : String, + required : true + }, + currencyId: { + type: mongoose.ObjectId, + required: true + }, + currencyName: { + type : String + }, + value: { + type: Number, + required: true + }, + type: { + type:String, + required:true, + enum: ['send','receive'], + } + } + ] +}, schemaOptions ) + +export const PendingTransfers = mongoose.model('PendingTransfers', pendingTransfers) diff --git a/server/db/successfulTransfers.js b/server/db/successfulTransfers.js new file mode 100755 index 0000000..9290df8 --- /dev/null +++ b/server/db/successfulTransfers.js @@ -0,0 +1,39 @@ +"use strict"; +exports.__esModule = true; +exports.SuccessfulTransfers = void 0; +var mongoose = require("mongoose"); +var schemaOptions = { + timestamps: { createdAt: 'created_at' } +}; +var successfulTransfers = new mongoose.Schema({ + userId: { + type: mongoose.ObjectId, + required: true + }, + transactions: [ + { + txId: { + type: String, + required: true + }, + currencyId: { + type: mongoose.ObjectId, + required: true + }, + currencyName: { + type: String, + required: true + }, + value: { + type: Number, + required: true + }, + type: { + type: String, + required: true, + "enum": ['send', 'receive', 'id'] + } + } + ] +}, schemaOptions); +exports.SuccessfulTransfers = mongoose.model('SuccessfulTransfers', successfulTransfers); diff --git a/server/db/successfulTransfers.ts b/server/db/successfulTransfers.ts new file mode 100755 index 0000000..026091e --- /dev/null +++ b/server/db/successfulTransfers.ts @@ -0,0 +1,38 @@ +import * as mongoose from 'mongoose' + +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, + }; +const successfulTransfers = new mongoose.Schema({ + userId : { + type: mongoose.ObjectId, + required: true + }, + transactions:[ + { + txId: { + type : String, + required : true + }, + currencyId : { + type : mongoose.ObjectId, + required : true + }, + currencyName : { + type : String, + required : true + }, + value:{ + type: Number, + required: true + }, + type:{ + type:String, + required:true, + enum: ['send','receive','id'], + } + } + ] +}, schemaOptions ) + +export const SuccessfulTransfers = mongoose.model('SuccessfulTransfers', successfulTransfers) \ No newline at end of file diff --git a/server/db/user.js b/server/db/user.js new file mode 100755 index 0000000..f3b663c --- /dev/null +++ b/server/db/user.js @@ -0,0 +1,245 @@ +"use strict"; +exports.__esModule = true; +exports.VerificationPhoneCode = exports.VerificationCode = exports.User = exports.verificationPhoneCodeSchema = exports.verificationCodeSchema = void 0; +var mongoose = require("mongoose"); +var bcrypt = require("bcrypt"); +exports.verificationCodeSchema = new mongoose.Schema({ + name: { + type: String, + required: true, + unique: true + }, + email: { + type: String + }, + createdAt: { type: Date, expires: 60 * 60 * 2, "default": Date.now } +}, { timestamp: true }); +exports.verificationPhoneCodeSchema = new mongoose.Schema({ + phoneNumber: { + type: String, + required: true, + min: 11, + max: 11, + unique: true + }, + validated: { + type: Boolean, + required: true, + "default": false + }, + code: { + type: String, + required: true, + unique: true + }, + sessionId: { + type: String + }, + createdAt: { type: Date, expires: 60 * 2, "default": Date.now } +}, { timestamp: true }); +var userSchema = new mongoose.Schema({ + name: { + type: String + }, + lastName: { + type: String + }, + email: { + address: { + type: String, + // required: true, + trim: true, + index: { + unique: true, + partialFilterExpression: { 'email.address': { $type: "string" } } + } + }, + validated: { + type: Boolean, + "default": false, + required: true + } + }, + rank: { + type: Number, + min: 1, + max: 5, + "default": 1 + }, + phoneNumber: { + number: { + type: String, + index: { + unique: true, + partialFilterExpression: { 'phoneNumber.number': { $type: "string" } } + }, + min: 11, + max: 11 + }, + validated: { + type: Boolean, + "default": false, + required: true + } + }, + tempPhoneNumber: { + type: mongoose.ObjectId + }, + birthdate: { + year: { + type: String + }, + month: { + type: String + }, + day: { + type: String + } + }, + emailVerificationString: { + type: mongoose.ObjectId + }, + resetPasswordVerificationString: { + type: mongoose.ObjectId + }, + isActive: { + type: Boolean, + required: true, + "default": true + }, + password: { + type: String, + required: true, + minlength: 6, + trim: true + }, + label: { + type: Array, + required: true + }, + hasTicketAccount: { + type: Boolean, + required: true, + "default": false + }, + userActivities: [ + { + action: { + type: String, + required: true + }, + timestamp: { + type: Date + }, + device: { + type: String + }, + loginDeviceId: {}, + ip: { + type: String + } + } + ], + address: [{ + title: { + type: String, + trim: 1 + }, + city: { + type: String, + required: true + }, + district: { + type: String + }, + province: { + type: String, + required: true + }, + postalCode: { + type: String, + required: true, + min: [10, 'Postal Code is 10 Digits'], + max: [10, 'Postal Code is 10 Digits'] + }, + address: { + type: String, + required: true, + max: [130, 'Maximmum allowed string length is 130 '] + }, + mobilePhone: { + type: String + }, + phone: { + type: String + } + }], + userType: { + type: String, + "enum": ['Normal', '‌‌Builder', 'Vip'], + required: true, + "default": 'Normal' + }, + wallet: [ + { + currency: { + type: mongoose.ObjectId, + required: true + }, + value: { + type: Number, + required: true, + "default": 0 + }, + commitment: { + type: Number, + required: true, + "default": 0 + } + } + ] +}); +// This functions will execute if the password field is modified. +userSchema.pre('save', function (next) { + var user = this; + if (user.isModified('password')) { + bcrypt.genSalt(Number(process.env.SALT_I)) + .then(function (salt) { + bcrypt.hash(user.password, salt) + .then(function (hash) { + user.password = hash; + next(); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + } + else { + next(); + } +}); +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. +userSchema.methods.comparePassword = function (candidatePassword, cb) { + bcrypt.compare(candidatePassword, this.password, function (err, isMatch) { + if (err) + return cb(err); + cb(null, isMatch); + }); +}; +userSchema.methods.comparePasswordPromise = function (candidatePassword) { + var _this = this; + return new Promise(function (resolve, reject) { + bcrypt.compare(candidatePassword, _this.password) + .then(function (isMatch) { + resolve(isMatch); + })["catch"](function (err) { + reject(err); + }); + }); +}; +exports.User = mongoose.model('User', userSchema); +exports.VerificationCode = mongoose.model('VerificationCode', exports.verificationCodeSchema); +exports.VerificationPhoneCode = mongoose.model('VerificationPhoneCode', exports.verificationPhoneCodeSchema); diff --git a/server/db/user.ts b/server/db/user.ts new file mode 100755 index 0000000..63485c6 --- /dev/null +++ b/server/db/user.ts @@ -0,0 +1,253 @@ +import * as mongoose from 'mongoose' +import * as bcrypt from 'bcrypt' + +export const verificationCodeSchema = new mongoose.Schema({ + name: { + type: String, + required: true, + unique: true + }, + email :{ + type : String + }, + createdAt: { type: Date, expires: 60 * 60 * 2, default: Date.now } +}, { timestamp: true }) + +export const verificationPhoneCodeSchema = new mongoose.Schema({ + phoneNumber: { + type: String, + required: true, + min: 11, + max: 11, + unique: true + }, + validated: { + type: Boolean, + required: true, + default: false + }, + code: { + type: String, + required: true, + unique: true + }, + sessionId: { + type: String + }, + createdAt: { type: Date, expires: 60 * 2, default: Date.now } +}, { timestamp: true }) + + +const userSchema = new mongoose.Schema({ + name: { + type: String + }, + lastName: { + type: String + }, + email: { + address :{ + type: String, + // required: true, + trim: true, + index: { + unique: true, + partialFilterExpression: { 'email.address': {$type: "string" } } + } + }, + validated: { + type: Boolean, + default: false, + required: true, + } + }, + rank: { + type: Number, + min: 1, + max: 5, + default: 1 +}, + phoneNumber: { + number: { + type: String, + index: { + unique: true, + partialFilterExpression: { 'phoneNumber.number': {$type: "string" } } + }, + min: 11, + max: 11 + }, + validated: { + type: Boolean, + default: false, + required: true, + } + }, + tempPhoneNumber: { + type: mongoose.ObjectId + }, + birthdate: { + year: { + type: String + }, + month: { + type: String + }, + day: { + type: String + } + }, + emailVerificationString: { + type: mongoose.ObjectId + }, + resetPasswordVerificationString: { + type: mongoose.ObjectId + }, + isActive: { + type: Boolean, + required: true, + default: true + }, + password: { + type: String, + required: true, + minlength: 6, + trim: true + }, + label: { + type: Array, + required: true + }, + hasTicketAccount : { + type : Boolean , + required : true, + default : false + }, + userActivities: [ + { + action: { + type: String, + required: true + }, + timestamp: { + type: Date + }, + device: { + type: String + }, + loginDeviceId: {}, + ip: { + type: String + } + } + ], + address: [{ + title: { + type: String, + trim: 1 + }, + city: { + type: String, + required: true + }, + district: { + type: String + }, + province: { + type: String, + required: true + }, + postalCode: { + type: String, + required: true, + min: [10, 'Postal Code is 10 Digits'], + max: [10, 'Postal Code is 10 Digits'] + }, + address: { + type: String, + required: true, + max: [130, 'Maximmum allowed string length is 130 '] + }, + + mobilePhone: { + type: String + }, + phone: { + type: String + } + }], + userType: { + type: String, + enum: ['Normal', '‌‌Builder', 'Vip'], + required: true, + default: 'Normal' + }, + wallet: [ + { + currency: { + type:mongoose.ObjectId, + required:true, + }, + value: { + type:Number, + required:true, + default:0, + }, + commitment:{ + type: Number, + required:true, + default:0, + }, + + + } + ] +}) + +// This functions will execute if the password field is modified. +userSchema.pre('save', function (next) { + var user = this + if (user.isModified('password')) { + bcrypt.genSalt(Number(process.env.SALT_I)) + .then((salt) => { + bcrypt.hash(user.password, salt) + .then((hash) => { + user.password = hash + next() + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) +} else { + next() +} +}) + +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. +userSchema.methods.comparePassword = function (candidatePassword, cb) { + bcrypt.compare(candidatePassword, this.password, function (err, isMatch) { + if (err) return cb(err) + cb(null, isMatch) + }) +} + +userSchema.methods.comparePasswordPromise = function (candidatePassword) { + return new Promise((resolve, reject) => { + bcrypt.compare(candidatePassword, this.password) + .then(function(isMatch) { + resolve(isMatch) + }) + .catch((err) => { + reject(err) + }) + }) +} + +export const User = mongoose.model('User', userSchema) +export const VerificationCode = mongoose.model('VerificationCode', verificationCodeSchema) +export const VerificationPhoneCode = mongoose.model('VerificationPhoneCode', verificationPhoneCodeSchema) diff --git a/server/db/wallet.ts b/server/db/wallet.ts new file mode 100755 index 0000000..149c6ca --- /dev/null +++ b/server/db/wallet.ts @@ -0,0 +1,240 @@ +import * as mongoose from 'mongoose' +import * as bcrypt from 'bcrypt' + +export const verificationCodeSchema = new mongoose.Schema({ + name: { + type: String, + required: true, + unique: true + }, + email :{ + type : String + } + , + createdAt: { type: Date, expires: 60 * 60 * 2, default: Date.now } +}, { timestamp: true }) + +export const verificationPhoneCodeSchema = new mongoose.Schema({ + phoneNumber: { + type: String, + required: true, + min: 11, + max: 11, + unique: true + }, + validated: { + type: Boolean, + required: true, + default: false + }, + code: { + type: String, + required: true, + unique: true + }, + sessionId: { + type: String + }, + createdAt: { type: Date, expires: 60 * 2, default: Date.now } +}, { timestamp: true }) + + +const userSchema = new mongoose.Schema({ + name: { + type: String + }, + lastName: { + type: String + }, + email: { + address :{ + type: String, + // required: true, + trim: true, + index: { + unique: true, + partialFilterExpression: { 'email.address': {$type: "string" } } + } + }, + validated: { + type: Boolean, + default: false, + required: true, + } + }, + phoneNumber: { + number: { + type: String, + index: { + unique: true, + partialFilterExpression: { 'phoneNumber.number': {$type: "string" } } + }, + min: 11, + max: 11 + }, + validated: { + type: Boolean, + default: false, + required: true, + } + }, + tempPhoneNumber: { + type: mongoose.ObjectId + }, + birthdate: { + year: { + type: String + }, + month: { + type: String + }, + day: { + type: String + } + }, + emailVerificationString: { + type: mongoose.ObjectId + }, + resetPasswordVerificationString: { + type: mongoose.ObjectId + }, + isActive: { + type: Boolean, + required: true, + default: true + }, + password: { + type: String, + required: true, + minlength: 6, + trim: true + }, + label: { + type: Array, + required: true + }, + userActivities: [ + { + action: { + type: String, + required: true + }, + timestamp: { + type: Date + }, + device: { + type: String + }, + loginDeviceId: {}, + ip: { + type: String + } + } + ], + address: [{ + title: { + type: String, + trim: 1 + }, + city: { + type: String, + required: true + }, + district: { + type: String + }, + province: { + type: String, + required: true + }, + postalCode: { + type: String, + required: true, + min: [10, 'Postal Code is 10 Digits'], + max: [10, 'Postal Code is 10 Digits'] + }, + address: { + type: String, + required: true, + max: [130, 'Maximmum allowed string length is 130 '] + }, + + mobilePhone: { + type: String + }, + phone: { + type: String + } + }], + userType: { + type: String, + enum: ['Normal', '‌‌Builder', 'Vip'], + required: true, + default: 'Normal' + }, + wallet:[ + { + currency:{ + type:mongoose.ObjectId, + required:true, + + + }, + value:{ + type:Number, + required:true, + default:0, + + } + } + + ] +}) + +// This functions will execute if the password field is modified. +userSchema.pre('save', function (next) { + var user = this + if (user.isModified('password')) { + bcrypt.genSalt(Number(process.env.SALT_I)) + .then((salt) => { + bcrypt.hash(user.password, salt) + .then((hash) => { + user.password = hash + next() + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) +} else { + next() +} +}) + +// This method compares the password which is stored in database and +// the password which the user entered. It is used in Login. +userSchema.methods.comparePassword = function (candidatePassword, cb) { + bcrypt.compare(candidatePassword, this.password, function (err, isMatch) { + if (err) return cb(err) + cb(null, isMatch) + }) +} + +userSchema.methods.comparePasswordPromise = function (candidatePassword) { + return new Promise((resolve, reject) => { + bcrypt.compare(candidatePassword, this.password) + .then(function(isMatch) { + resolve(isMatch) + }) + .catch((err) => { + reject(err) + }) + }) +} + +export const User = mongoose.model('User', userSchema) +export const VerificationCode = mongoose.model('VerificationCode', verificationCodeSchema) +export const VerificationPhoneCode = mongoose.model('VerificationPhoneCode', verificationPhoneCodeSchema) diff --git a/server/db/withdrawOffers.js b/server/db/withdrawOffers.js new file mode 100755 index 0000000..6adafc0 --- /dev/null +++ b/server/db/withdrawOffers.js @@ -0,0 +1,45 @@ +"use strict"; +exports.__esModule = true; +exports.Withdraw_Offers = void 0; +var mongoose = require("mongoose"); +var schemaOptions = { + timestamps: { createdAt: 'created_at' } +}; +var withdrawnOffers = new mongoose.Schema({ + userId: { + type: mongoose.ObjectId, + required: false + }, + offers: [{ + offerId: { + type: String, + required: true, + unique: true + }, + curGivenId: { + type: mongoose.ObjectId, + required: true + }, + curGivenVal: { + type: Number, + required: true + }, + curTakenId: { + type: mongoose.ObjectId, + required: true + }, + curTakenVal: { + type: Number, + required: true + }, + offeredDate: { + type: Date, + required: true + }, + expiredDate: { + type: Date, + required: true + } + }] +}, schemaOptions); +exports.Withdraw_Offers = mongoose.model('WithdrawnOffers', withdrawnOffers); diff --git a/server/db/withdrawOffers.ts b/server/db/withdrawOffers.ts new file mode 100755 index 0000000..9f6c8ff --- /dev/null +++ b/server/db/withdrawOffers.ts @@ -0,0 +1,73 @@ +import * as mongoose from 'mongoose' +const schemaOptions = { + timestamps: { createdAt: 'created_at' }, + }; +const withdrawnOffers = new mongoose.Schema({ + + userId : { + type: mongoose.ObjectId, + required: false, + }, + offers : [{ + offerId:{ + type: String, + required: true, + unique: true + }, + curGivenId:{ + type: mongoose.ObjectId, + required: true + }, + curGivenVal:{ + type: Number, + required: true + }, + curTakenId:{ + type: mongoose.ObjectId, + required: true + }, + curTakenVal:{ + type: Number, + required: true + }, + offeredDate:{ + type:Date, + required: true, + }, + expiredDate:{ + type:Date, + required: true, + }, + //withdrawDate:{ + // type: Date, + // required: true, + // default: Date.now, + //} + // bargains:[{ + // userId:{ + // type: mongoose.ObjectId, + // required: true, + // }, + + // value:{ + // type: Number, + // required: true, + + // }, + + // cur_id:{ + // type: mongoose.ObjectId, + // required: true, + // }, + // bar_date:{ + // type:Date, + // required:true, + // } + + // }] + }], +}, schemaOptions) + + + +export const Withdraw_Offers = mongoose.model('WithdrawnOffers', withdrawnOffers) \ No newline at end of file diff --git a/server/db/withdrawnOffers.js b/server/db/withdrawnOffers.js new file mode 100755 index 0000000..7ea927c --- /dev/null +++ b/server/db/withdrawnOffers.js @@ -0,0 +1,60 @@ +"use strict"; +exports.__esModule = true; +exports.Withdrawn_Offers = void 0; +var mongoose = require("mongoose"); +var withdrawnOffers = new mongoose.Schema({ + userId: { + type: mongoose.ObjectId, + required: false + }, + offers: [{ + curGivenId: { + type: mongoose.ObjectId, + required: true + }, + curGivenVal: { + type: Number, + required: true + }, + curTakenId: { + type: mongoose.ObjectId, + required: true + }, + curTakenVal: { + type: Number, + required: true + }, + offeredDate: { + type: Date, + required: true + }, + expiredDate: { + type: Date, + required: true + }, + withdrawDate: { + type: Date, + required: true, + "default": Date.now + } + // bargains:[{ + // userId:{ + // type: mongoose.ObjectId, + // required: true, + // }, + // value:{ + // type: Number, + // required: true, + // }, + // cur_id:{ + // type: mongoose.ObjectId, + // required: true, + // }, + // bar_date:{ + // type:Date, + // required:true, + // } + // }] + }] +}); +exports.Withdrawn_Offers = mongoose.model('WithdrawnOffers', withdrawnOffers); diff --git a/server/dump/admin/system.version.bson b/server/dump/admin/system.version.bson new file mode 100755 index 0000000..df4849a Binary files /dev/null and b/server/dump/admin/system.version.bson differ diff --git a/server/dump/admin/system.version.metadata.json b/server/dump/admin/system.version.metadata.json new file mode 100755 index 0000000..8409991 --- /dev/null +++ b/server/dump/admin/system.version.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"daaa08c4bcf54161b9f06c5fc2d402d1","collectionName":"system.version"} \ No newline at end of file diff --git a/server/dump/exchange/acceptedoffers.bson b/server/dump/exchange/acceptedoffers.bson new file mode 100755 index 0000000..e69de29 diff --git a/server/dump/exchange/acceptedoffers.metadata.json b/server/dump/exchange/acceptedoffers.metadata.json new file mode 100755 index 0000000..b4ee51c --- /dev/null +++ b/server/dump/exchange/acceptedoffers.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"offers.offerId":{"$numberInt":"1"}},"name":"offers.offerId_1","background":true},{"v":{"$numberInt":"2"},"unique":true,"key":{"offerId":{"$numberInt":"1"}},"name":"offerId_1","background":true}],"uuid":"8703dc2b5f5d4567a568d80817b56afa","collectionName":"acceptedoffers"} \ No newline at end of file diff --git a/server/dump/exchange/activeoffers.bson b/server/dump/exchange/activeoffers.bson new file mode 100755 index 0000000..ad551c3 Binary files /dev/null and b/server/dump/exchange/activeoffers.bson differ diff --git a/server/dump/exchange/activeoffers.metadata.json b/server/dump/exchange/activeoffers.metadata.json new file mode 100755 index 0000000..bcc0de5 --- /dev/null +++ b/server/dump/exchange/activeoffers.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"userId":{"$numberInt":"1"}},"name":"userId_1","background":true},{"v":{"$numberInt":"2"},"unique":true,"key":{"offerId":{"$numberInt":"1"}},"name":"offerId_1","background":true}],"uuid":"fc4244e986a5438f87685af69e958898","collectionName":"activeoffers"} \ No newline at end of file diff --git a/server/dump/exchange/admins.bson b/server/dump/exchange/admins.bson new file mode 100755 index 0000000..d5f7f0b Binary files /dev/null and b/server/dump/exchange/admins.bson differ diff --git a/server/dump/exchange/admins.metadata.json b/server/dump/exchange/admins.metadata.json new file mode 100755 index 0000000..e7ea3c4 --- /dev/null +++ b/server/dump/exchange/admins.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"email":{"$numberInt":"1"}},"name":"email_1","background":true}],"uuid":"19571896da2b47d98703ab79ffe3d1f5","collectionName":"admins"} \ No newline at end of file diff --git a/server/dump/exchange/currencies.bson b/server/dump/exchange/currencies.bson new file mode 100755 index 0000000..bc411a5 Binary files /dev/null and b/server/dump/exchange/currencies.bson differ diff --git a/server/dump/exchange/currencies.metadata.json b/server/dump/exchange/currencies.metadata.json new file mode 100755 index 0000000..6252d47 --- /dev/null +++ b/server/dump/exchange/currencies.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"name":{"$numberInt":"1"}},"name":"name_1","background":true},{"v":{"$numberInt":"2"},"unique":true,"key":{"per_name":{"$numberInt":"1"}},"name":"per_name_1","background":true},{"v":{"$numberInt":"2"},"unique":true,"key":{"ab_name":{"$numberInt":"1"}},"name":"ab_name_1","background":true}],"uuid":"17d5a5198d0147478e485f1a6e60cfef","collectionName":"currencies"} \ No newline at end of file diff --git a/server/dump/exchange/getprices.bson b/server/dump/exchange/getprices.bson new file mode 100755 index 0000000..e69de29 diff --git a/server/dump/exchange/getprices.metadata.json b/server/dump/exchange/getprices.metadata.json new file mode 100755 index 0000000..84c0449 --- /dev/null +++ b/server/dump/exchange/getprices.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"key":{"createdAt":{"$numberInt":"1"}},"name":"createdAt_1","expireAfterSeconds":{"$numberInt":"20"},"background":true}],"uuid":"1b7d90c9468e4d4d8ae0d09010c118fd","collectionName":"getprices"} \ No newline at end of file diff --git a/server/dump/exchange/globaldailyprices.bson b/server/dump/exchange/globaldailyprices.bson new file mode 100755 index 0000000..aefd003 Binary files /dev/null and b/server/dump/exchange/globaldailyprices.bson differ diff --git a/server/dump/exchange/globaldailyprices.metadata.json b/server/dump/exchange/globaldailyprices.metadata.json new file mode 100755 index 0000000..152377c --- /dev/null +++ b/server/dump/exchange/globaldailyprices.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"1b7b7f5c1c474ab28210a6c0c16725a6","collectionName":"globaldailyprices"} \ No newline at end of file diff --git a/server/dump/exchange/globalhourlyprices.bson b/server/dump/exchange/globalhourlyprices.bson new file mode 100755 index 0000000..c5f7c07 Binary files /dev/null and b/server/dump/exchange/globalhourlyprices.bson differ diff --git a/server/dump/exchange/globalhourlyprices.metadata.json b/server/dump/exchange/globalhourlyprices.metadata.json new file mode 100755 index 0000000..a254084 --- /dev/null +++ b/server/dump/exchange/globalhourlyprices.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"d36a7159cd864b2e8ce904964d7c91ff","collectionName":"globalhourlyprices"} \ No newline at end of file diff --git a/server/dump/exchange/globalmonthlyprices.bson b/server/dump/exchange/globalmonthlyprices.bson new file mode 100755 index 0000000..22ef57c Binary files /dev/null and b/server/dump/exchange/globalmonthlyprices.bson differ diff --git a/server/dump/exchange/globalmonthlyprices.metadata.json b/server/dump/exchange/globalmonthlyprices.metadata.json new file mode 100755 index 0000000..a150037 --- /dev/null +++ b/server/dump/exchange/globalmonthlyprices.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"f804694693924d74bc73518bfffc61e8","collectionName":"globalmonthlyprices"} \ No newline at end of file diff --git a/server/dump/exchange/globalweeklyprices.bson b/server/dump/exchange/globalweeklyprices.bson new file mode 100755 index 0000000..b35f269 Binary files /dev/null and b/server/dump/exchange/globalweeklyprices.bson differ diff --git a/server/dump/exchange/globalweeklyprices.metadata.json b/server/dump/exchange/globalweeklyprices.metadata.json new file mode 100755 index 0000000..27f8a05 --- /dev/null +++ b/server/dump/exchange/globalweeklyprices.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"beb258360afa44a39fca27c3ed669858","collectionName":"globalweeklyprices"} \ No newline at end of file diff --git a/server/dump/exchange/globalyearlyprices.bson b/server/dump/exchange/globalyearlyprices.bson new file mode 100755 index 0000000..890cf28 Binary files /dev/null and b/server/dump/exchange/globalyearlyprices.bson differ diff --git a/server/dump/exchange/globalyearlyprices.metadata.json b/server/dump/exchange/globalyearlyprices.metadata.json new file mode 100755 index 0000000..92855d5 --- /dev/null +++ b/server/dump/exchange/globalyearlyprices.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"f9f208ef081748199e70b442bf74143f","collectionName":"globalyearlyprices"} \ No newline at end of file diff --git a/server/dump/exchange/localdailies.bson b/server/dump/exchange/localdailies.bson new file mode 100755 index 0000000..c59bc70 Binary files /dev/null and b/server/dump/exchange/localdailies.bson differ diff --git a/server/dump/exchange/localdailies.metadata.json b/server/dump/exchange/localdailies.metadata.json new file mode 100755 index 0000000..daf5eff --- /dev/null +++ b/server/dump/exchange/localdailies.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"3b03f55f1b1c49c9b55b082504cf0d91","collectionName":"localdailies"} \ No newline at end of file diff --git a/server/dump/exchange/localhourlies.bson b/server/dump/exchange/localhourlies.bson new file mode 100755 index 0000000..8156f90 Binary files /dev/null and b/server/dump/exchange/localhourlies.bson differ diff --git a/server/dump/exchange/localhourlies.metadata.json b/server/dump/exchange/localhourlies.metadata.json new file mode 100755 index 0000000..69b332f --- /dev/null +++ b/server/dump/exchange/localhourlies.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"82f7afd9f310484e95a4ffb35c55959c","collectionName":"localhourlies"} \ No newline at end of file diff --git a/server/dump/exchange/localmonthlies.bson b/server/dump/exchange/localmonthlies.bson new file mode 100755 index 0000000..82572d3 Binary files /dev/null and b/server/dump/exchange/localmonthlies.bson differ diff --git a/server/dump/exchange/localmonthlies.metadata.json b/server/dump/exchange/localmonthlies.metadata.json new file mode 100755 index 0000000..2607354 --- /dev/null +++ b/server/dump/exchange/localmonthlies.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"f2650066758647d6ba2b5f42ccbc4d80","collectionName":"localmonthlies"} \ No newline at end of file diff --git a/server/dump/exchange/localweeklies.bson b/server/dump/exchange/localweeklies.bson new file mode 100755 index 0000000..9a692fc Binary files /dev/null and b/server/dump/exchange/localweeklies.bson differ diff --git a/server/dump/exchange/localweeklies.metadata.json b/server/dump/exchange/localweeklies.metadata.json new file mode 100755 index 0000000..9184671 --- /dev/null +++ b/server/dump/exchange/localweeklies.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"5c52565171b24ec1965d78874cfa2654","collectionName":"localweeklies"} \ No newline at end of file diff --git a/server/dump/exchange/localyearlies.bson b/server/dump/exchange/localyearlies.bson new file mode 100755 index 0000000..0e2c91a Binary files /dev/null and b/server/dump/exchange/localyearlies.bson differ diff --git a/server/dump/exchange/localyearlies.metadata.json b/server/dump/exchange/localyearlies.metadata.json new file mode 100755 index 0000000..fd0b52f --- /dev/null +++ b/server/dump/exchange/localyearlies.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"610d4ac0a1a64b1dad3d2a66e8f0e70b","collectionName":"localyearlies"} \ No newline at end of file diff --git a/server/dump/exchange/sessions.bson b/server/dump/exchange/sessions.bson new file mode 100755 index 0000000..e69de29 diff --git a/server/dump/exchange/sessions.metadata.json b/server/dump/exchange/sessions.metadata.json new file mode 100755 index 0000000..a98bf32 --- /dev/null +++ b/server/dump/exchange/sessions.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"key":{"expires":{"$numberInt":"1"}},"name":"expires_1","expireAfterSeconds":{"$numberInt":"0"}}],"uuid":"e92a1cecc8f94eb3a3210e902ca48b95","collectionName":"sessions"} \ No newline at end of file diff --git a/server/dump/exchange/users.bson b/server/dump/exchange/users.bson new file mode 100755 index 0000000..dd8a6cb Binary files /dev/null and b/server/dump/exchange/users.bson differ diff --git a/server/dump/exchange/users.metadata.json b/server/dump/exchange/users.metadata.json new file mode 100755 index 0000000..8b8c04f --- /dev/null +++ b/server/dump/exchange/users.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"email.address":{"$numberInt":"1"}},"name":"email.address_1","partialFilterExpression":{"email.address":{"$type":"string"}},"background":true},{"v":{"$numberInt":"2"},"unique":true,"key":{"phoneNumber.number":{"$numberInt":"1"}},"name":"phoneNumber.number_1","partialFilterExpression":{"phoneNumber.number":{"$type":"string"}},"background":true}],"uuid":"7b53189cb548495d9508f06ee6772c9a","collectionName":"users"} \ No newline at end of file diff --git a/server/dump/exchange/verificationcodes.bson b/server/dump/exchange/verificationcodes.bson new file mode 100755 index 0000000..e69de29 diff --git a/server/dump/exchange/verificationcodes.metadata.json b/server/dump/exchange/verificationcodes.metadata.json new file mode 100755 index 0000000..85e3000 --- /dev/null +++ b/server/dump/exchange/verificationcodes.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"name":{"$numberInt":"1"}},"name":"name_1","background":true},{"v":{"$numberInt":"2"},"key":{"createdAt":{"$numberInt":"1"}},"name":"createdAt_1","expireAfterSeconds":{"$numberInt":"7200"},"background":true}],"uuid":"98bcffe223ea45e79eab113f1898f06f","collectionName":"verificationcodes"} \ No newline at end of file diff --git a/server/dump/exchange/verificationphonecodes.bson b/server/dump/exchange/verificationphonecodes.bson new file mode 100755 index 0000000..e69de29 diff --git a/server/dump/exchange/verificationphonecodes.metadata.json b/server/dump/exchange/verificationphonecodes.metadata.json new file mode 100755 index 0000000..a9e52f7 --- /dev/null +++ b/server/dump/exchange/verificationphonecodes.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"phoneNumber":{"$numberInt":"1"}},"name":"phoneNumber_1","background":true},{"v":{"$numberInt":"2"},"unique":true,"key":{"code":{"$numberInt":"1"}},"name":"code_1","background":true},{"v":{"$numberInt":"2"},"key":{"createdAt":{"$numberInt":"1"}},"name":"createdAt_1","expireAfterSeconds":{"$numberInt":"120"},"background":true}],"uuid":"e7cdbe36582049b0bcf8e4fe5d66fd2e","collectionName":"verificationphonecodes"} \ No newline at end of file diff --git a/server/dump/exchange/withdrawnoffers.bson b/server/dump/exchange/withdrawnoffers.bson new file mode 100755 index 0000000..e69de29 diff --git a/server/dump/exchange/withdrawnoffers.metadata.json b/server/dump/exchange/withdrawnoffers.metadata.json new file mode 100755 index 0000000..5790c61 --- /dev/null +++ b/server/dump/exchange/withdrawnoffers.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"offers.offerId":{"$numberInt":"1"}},"name":"offers.offerId_1","background":true}],"uuid":"458b9d2c3e58488b900ae9a279915036","collectionName":"withdrawnoffers"} \ No newline at end of file diff --git a/server/dump/trudesk/accounts.bson b/server/dump/trudesk/accounts.bson new file mode 100755 index 0000000..967580e Binary files /dev/null and b/server/dump/trudesk/accounts.bson differ diff --git a/server/dump/trudesk/accounts.metadata.json b/server/dump/trudesk/accounts.metadata.json new file mode 100755 index 0000000..8431222 --- /dev/null +++ b/server/dump/trudesk/accounts.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"username":{"$numberInt":"1"}},"name":"username_1","background":true},{"v":{"$numberInt":"2"},"key":{"fullname":{"$numberInt":"1"}},"name":"fullname_1","background":true},{"v":{"$numberInt":"2"},"unique":true,"key":{"email":{"$numberInt":"1"}},"name":"email_1","background":true},{"v":{"$numberInt":"2"},"key":{"accessToken":{"$numberInt":"1"}},"name":"accessToken_1","sparse":true,"background":true}],"uuid":"d9ba851367f94be7ac9dbf016cba9292","collectionName":"accounts"} \ No newline at end of file diff --git a/server/dump/trudesk/conversations.bson b/server/dump/trudesk/conversations.bson new file mode 100755 index 0000000..f508afe Binary files /dev/null and b/server/dump/trudesk/conversations.bson differ diff --git a/server/dump/trudesk/conversations.metadata.json b/server/dump/trudesk/conversations.metadata.json new file mode 100755 index 0000000..73c9ee4 --- /dev/null +++ b/server/dump/trudesk/conversations.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"d7b5d01e712e4021b6d7a55b1a1947f0","collectionName":"conversations"} \ No newline at end of file diff --git a/server/dump/trudesk/counters.bson b/server/dump/trudesk/counters.bson new file mode 100755 index 0000000..cfdd585 Binary files /dev/null and b/server/dump/trudesk/counters.bson differ diff --git a/server/dump/trudesk/counters.metadata.json b/server/dump/trudesk/counters.metadata.json new file mode 100755 index 0000000..52d0b3d --- /dev/null +++ b/server/dump/trudesk/counters.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"b082b6a7361c408397c9b95d7db9d5f5","collectionName":"counters"} \ No newline at end of file diff --git a/server/dump/trudesk/departments.bson b/server/dump/trudesk/departments.bson new file mode 100755 index 0000000..aa3d445 Binary files /dev/null and b/server/dump/trudesk/departments.bson differ diff --git a/server/dump/trudesk/departments.metadata.json b/server/dump/trudesk/departments.metadata.json new file mode 100755 index 0000000..9c1e523 --- /dev/null +++ b/server/dump/trudesk/departments.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"name":{"$numberInt":"1"}},"name":"name_1","background":true}],"uuid":"631284812d6e47ad85a4c0dd6a9b7ce3","collectionName":"departments"} \ No newline at end of file diff --git a/server/dump/trudesk/groups.bson b/server/dump/trudesk/groups.bson new file mode 100755 index 0000000..6fc8d06 Binary files /dev/null and b/server/dump/trudesk/groups.bson differ diff --git a/server/dump/trudesk/groups.metadata.json b/server/dump/trudesk/groups.metadata.json new file mode 100755 index 0000000..3664333 --- /dev/null +++ b/server/dump/trudesk/groups.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"name":{"$numberInt":"1"}},"name":"name_1","background":true}],"uuid":"691378bb600b4cf2b4082492cc620d03","collectionName":"groups"} \ No newline at end of file diff --git a/server/dump/trudesk/messages.bson b/server/dump/trudesk/messages.bson new file mode 100755 index 0000000..7344876 Binary files /dev/null and b/server/dump/trudesk/messages.bson differ diff --git a/server/dump/trudesk/messages.metadata.json b/server/dump/trudesk/messages.metadata.json new file mode 100755 index 0000000..6de5699 --- /dev/null +++ b/server/dump/trudesk/messages.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"key":{"conversation":{"$numberInt":"1"}},"name":"conversation_1","background":true},{"v":{"$numberInt":"2"},"key":{"owner":{"$numberInt":"1"}},"name":"owner_1","background":true}],"uuid":"ad4c331b1aed43efb79f1a4691dd44cc","collectionName":"messages"} \ No newline at end of file diff --git a/server/dump/trudesk/notices.bson b/server/dump/trudesk/notices.bson new file mode 100755 index 0000000..7df8117 Binary files /dev/null and b/server/dump/trudesk/notices.bson differ diff --git a/server/dump/trudesk/notices.metadata.json b/server/dump/trudesk/notices.metadata.json new file mode 100755 index 0000000..0fa88ff --- /dev/null +++ b/server/dump/trudesk/notices.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"3295e734618f4d7292e181f93c4b6e9e","collectionName":"notices"} \ No newline at end of file diff --git a/server/dump/trudesk/notifications.bson b/server/dump/trudesk/notifications.bson new file mode 100755 index 0000000..ae8225c Binary files /dev/null and b/server/dump/trudesk/notifications.bson differ diff --git a/server/dump/trudesk/notifications.metadata.json b/server/dump/trudesk/notifications.metadata.json new file mode 100755 index 0000000..5cc3817 --- /dev/null +++ b/server/dump/trudesk/notifications.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"c3cfb0c53bf34fc69ac758ccdee5f3b9","collectionName":"notifications"} \ No newline at end of file diff --git a/server/dump/trudesk/priorities.bson b/server/dump/trudesk/priorities.bson new file mode 100755 index 0000000..f1d9a2c Binary files /dev/null and b/server/dump/trudesk/priorities.bson differ diff --git a/server/dump/trudesk/priorities.metadata.json b/server/dump/trudesk/priorities.metadata.json new file mode 100755 index 0000000..f3dc855 --- /dev/null +++ b/server/dump/trudesk/priorities.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"name":{"$numberInt":"1"}},"name":"name_1","background":true},{"v":{"$numberInt":"2"},"key":{"migrationNum":{"$numberInt":"1"}},"name":"migrationNum_1","background":true}],"uuid":"4ad7a9e6844648e9b4610d644ff35230","collectionName":"priorities"} \ No newline at end of file diff --git a/server/dump/trudesk/role_order.bson b/server/dump/trudesk/role_order.bson new file mode 100755 index 0000000..eeca0ae Binary files /dev/null and b/server/dump/trudesk/role_order.bson differ diff --git a/server/dump/trudesk/role_order.metadata.json b/server/dump/trudesk/role_order.metadata.json new file mode 100755 index 0000000..0b3f35c --- /dev/null +++ b/server/dump/trudesk/role_order.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"bf071df6ad7e4ac3bdd5ec6aed048ef5","collectionName":"role_order"} \ No newline at end of file diff --git a/server/dump/trudesk/roles.bson b/server/dump/trudesk/roles.bson new file mode 100755 index 0000000..46f0ced Binary files /dev/null and b/server/dump/trudesk/roles.bson differ diff --git a/server/dump/trudesk/roles.metadata.json b/server/dump/trudesk/roles.metadata.json new file mode 100755 index 0000000..fce8a60 --- /dev/null +++ b/server/dump/trudesk/roles.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"name":{"$numberInt":"1"}},"name":"name_1","background":true}],"uuid":"deb5f480e7644a56afed8825ae67f45f","collectionName":"roles"} \ No newline at end of file diff --git a/server/dump/trudesk/sessions.bson b/server/dump/trudesk/sessions.bson new file mode 100755 index 0000000..662a118 Binary files /dev/null and b/server/dump/trudesk/sessions.bson differ diff --git a/server/dump/trudesk/sessions.metadata.json b/server/dump/trudesk/sessions.metadata.json new file mode 100755 index 0000000..729b562 --- /dev/null +++ b/server/dump/trudesk/sessions.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"key":{"expires":{"$numberInt":"1"}},"name":"expires_1","expireAfterSeconds":{"$numberInt":"0"}}],"uuid":"f68fec9a51034a7b83925da21831f70b","collectionName":"sessions"} \ No newline at end of file diff --git a/server/dump/trudesk/settings.bson b/server/dump/trudesk/settings.bson new file mode 100755 index 0000000..afdcdf7 Binary files /dev/null and b/server/dump/trudesk/settings.bson differ diff --git a/server/dump/trudesk/settings.metadata.json b/server/dump/trudesk/settings.metadata.json new file mode 100755 index 0000000..82e0021 --- /dev/null +++ b/server/dump/trudesk/settings.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"name":{"$numberInt":"1"}},"name":"name_1","background":true}],"uuid":"31f79af63e40479193c16ce811bd814d","collectionName":"settings"} \ No newline at end of file diff --git a/server/dump/trudesk/tags.bson b/server/dump/trudesk/tags.bson new file mode 100755 index 0000000..e69de29 diff --git a/server/dump/trudesk/tags.metadata.json b/server/dump/trudesk/tags.metadata.json new file mode 100755 index 0000000..dea40c1 --- /dev/null +++ b/server/dump/trudesk/tags.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"name":{"$numberInt":"1"}},"name":"name_1","background":true}],"uuid":"67f3d06b5d2a4016ae5b054ea486e3f8","collectionName":"tags"} \ No newline at end of file diff --git a/server/dump/trudesk/teams.bson b/server/dump/trudesk/teams.bson new file mode 100755 index 0000000..c930772 Binary files /dev/null and b/server/dump/trudesk/teams.bson differ diff --git a/server/dump/trudesk/teams.metadata.json b/server/dump/trudesk/teams.metadata.json new file mode 100755 index 0000000..991e0e9 --- /dev/null +++ b/server/dump/trudesk/teams.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"name":{"$numberInt":"1"}},"name":"name_1","background":true},{"v":{"$numberInt":"2"},"unique":true,"key":{"normalized":{"$numberInt":"1"}},"name":"normalized_1","background":true}],"uuid":"f4b16569ddb245f3bcd3167e8fd10e7c","collectionName":"teams"} \ No newline at end of file diff --git a/server/dump/trudesk/templates.bson b/server/dump/trudesk/templates.bson new file mode 100755 index 0000000..478cb08 Binary files /dev/null and b/server/dump/trudesk/templates.bson differ diff --git a/server/dump/trudesk/templates.metadata.json b/server/dump/trudesk/templates.metadata.json new file mode 100755 index 0000000..7fa0358 --- /dev/null +++ b/server/dump/trudesk/templates.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"}],"uuid":"4f1eacb21c564fd4b22554f37b3edb0e","collectionName":"templates"} \ No newline at end of file diff --git a/server/dump/trudesk/tickets.bson b/server/dump/trudesk/tickets.bson new file mode 100755 index 0000000..07a81ff Binary files /dev/null and b/server/dump/trudesk/tickets.bson differ diff --git a/server/dump/trudesk/tickets.metadata.json b/server/dump/trudesk/tickets.metadata.json new file mode 100755 index 0000000..aceecaa --- /dev/null +++ b/server/dump/trudesk/tickets.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"uid":{"$numberInt":"1"}},"name":"uid_1","background":true},{"v":{"$numberInt":"2"},"key":{"date":{"$numberInt":"1"}},"name":"date_1","background":true},{"v":{"$numberInt":"2"},"key":{"deleted":{"$numberInt":"1"}},"name":"deleted_1","background":true},{"v":{"$numberInt":"2"},"key":{"deleted":{"$numberInt":"-1"},"group":{"$numberInt":"1"},"status":{"$numberInt":"1"}},"name":"deleted_-1_group_1_status_1","background":true},{"v":{"$numberInt":"2"},"key":{"status":{"$numberInt":"1"}},"name":"status_1","background":true}],"uuid":"0c21c625c5cb45edadc83d39aa065bc9","collectionName":"tickets"} \ No newline at end of file diff --git a/server/dump/trudesk/tickettypes.bson b/server/dump/trudesk/tickettypes.bson new file mode 100755 index 0000000..d478689 Binary files /dev/null and b/server/dump/trudesk/tickettypes.bson differ diff --git a/server/dump/trudesk/tickettypes.metadata.json b/server/dump/trudesk/tickettypes.metadata.json new file mode 100755 index 0000000..1c22cb5 --- /dev/null +++ b/server/dump/trudesk/tickettypes.metadata.json @@ -0,0 +1 @@ +{"indexes":[{"v":{"$numberInt":"2"},"key":{"_id":{"$numberInt":"1"}},"name":"_id_"},{"v":{"$numberInt":"2"},"unique":true,"key":{"name":{"$numberInt":"1"}},"name":"name_1","background":true}],"uuid":"7f675b5088c147fb937682abb62898a9","collectionName":"tickettypes"} \ No newline at end of file diff --git a/server/error.log b/server/error.log new file mode 100755 index 0000000..9bc0f95 --- /dev/null +++ b/server/error.log @@ -0,0 +1,1735 @@ +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 90452253, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T09:18:52.485Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 101142998, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T12:17:03.510Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 102100189, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T12:33:00.640Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 102203363, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T12:34:43.788Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 112552715, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T15:27:12.830Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 113220334, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-29T15:38:20.860Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 123741903, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-30T07:12:36.941Z' } +{ message: 'connect ECONNREFUSED 127.0.0.1:27017', + reason: + TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: + Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: + { Error: connect ECONNREFUSED 127.0.0.1:27017 + at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14) name: 'MongoNetworkError' }, + roundTripTime: -1, + lastUpdateTime: 124005934, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] } }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null }, + level: 'error', + timestamp: '2020-11-30T07:17:00.873Z' } +{ message: + 'Error: Provided address "undefined" is invalid, the capitalization checksum test failed, or its an indrect IBAN address which can\'t be converted.\n at Method.inputAddressFormatter (/home/elliot/Desktop/exchange/server/node_modules/web3-core-helpers/lib/formatters.js:398:11)\n at /home/elliot/Desktop/exchange/server/node_modules/web3-core-method/lib/index.js:129:38\n at Array.map ()\n at Method.formatInput (/home/elliot/Desktop/exchange/server/node_modules/web3-core-method/lib/index.js:127:32)\n at Method.toPayload (/home/elliot/Desktop/exchange/server/node_modules/web3-core-method/lib/index.js:160:23)\n at Eth.send [as getTransactionCount] (/home/elliot/Desktop/exchange/server/node_modules/web3-core-method/lib/index.js:498:61)\n at Object.exports.getEtheriumNonce (/home/elliot/Desktop/exchange/server/api/walletApi/etheriuem.js:70:21)\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:87:20\n at Object. (/home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:47:42)\n at step (/home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:33:23)\n at Object.next (/home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:14:53)\n at /home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:8:71\n at new Promise ()\n at __awaiter (/home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:4:12)\n at /home/elliot/Desktop/exchange/server/middlewares/tryCatch.js:41:47\n at Layer.handle [as handle_request] (/home/elliot/Desktop/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n at next (/home/elliot/Desktop/exchange/server/node_modules/express/lib/router/route.js:137:13)\n at exports.validate (/home/elliot/Desktop/exchange/server/middlewares/validation.js:1866:9)\n at Layer.handle [as handle_request] (/home/elliot/Desktop/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n at next (/home/elliot/Desktop/exchange/server/node_modules/express/lib/router/route.js:137:13)\n at middleware (/home/elliot/Desktop/exchange/server/node_modules/express-validator/src/middlewares/check.js:16:13)\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', +<<<<<<< HEAD + timestamp: '2020-11-23T13:49:08.562Z' +} +>>>>>>> 3c5d0ffa3c870a18254fc5d101dcee707be908b6 +{ + message: 'MongoError: unknown operator: $or\n' + + ' at MessageStream.messageHandler (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/connection.js:268:20)\n' + + ' at MessageStream.emit (events.js:314:20)\n' + + ' at processIncomingData (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n' + + ' at MessageStream._write (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n' + + ' at doWrite (_stream_writable.js:403:12)\n' + + ' at writeOrBuffer (_stream_writable.js:387:5)\n' + + ' at MessageStream.Writable.write (_stream_writable.js:318:11)\n' + + ' at Socket.ondata (_stream_readable.js:719:22)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at addChunk (_stream_readable.js:298:12)\n' + + ' at readableAddChunk (_stream_readable.js:273:9)\n' + + ' at Socket.Readable.push (_stream_readable.js:214:10)\n' + + ' at TCP.onStreamRead (internal/stream_base_commons.js:188:23)', + level: 'error', + timestamp: '2020-11-28T11:44:42.341Z' +} +{ + message: 'MongoError: unknown operator: $or\n' + + ' at MessageStream.messageHandler (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/connection.js:268:20)\n' + + ' at MessageStream.emit (events.js:314:20)\n' + + ' at processIncomingData (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n' + + ' at MessageStream._write (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n' + + ' at doWrite (_stream_writable.js:403:12)\n' + + ' at writeOrBuffer (_stream_writable.js:387:5)\n' + + ' at MessageStream.Writable.write (_stream_writable.js:318:11)\n' + + ' at Socket.ondata (_stream_readable.js:719:22)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at addChunk (_stream_readable.js:298:12)\n' + + ' at readableAddChunk (_stream_readable.js:273:9)\n' + + ' at Socket.Readable.push (_stream_readable.js:214:10)\n' + + ' at TCP.onStreamRead (internal/stream_base_commons.js:188:23)', + level: 'error', + timestamp: '2020-11-28T11:45:26.928Z' +} +{ + message: 'MongoError: unknown operator: $or\n' + + ' at MessageStream.messageHandler (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/connection.js:268:20)\n' + + ' at MessageStream.emit (events.js:314:20)\n' + + ' at processIncomingData (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n' + + ' at MessageStream._write (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n' + + ' at doWrite (_stream_writable.js:403:12)\n' + + ' at writeOrBuffer (_stream_writable.js:387:5)\n' + + ' at MessageStream.Writable.write (_stream_writable.js:318:11)\n' + + ' at Socket.ondata (_stream_readable.js:719:22)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at addChunk (_stream_readable.js:298:12)\n' + + ' at readableAddChunk (_stream_readable.js:273:9)\n' + + ' at Socket.Readable.push (_stream_readable.js:214:10)\n' + + ' at TCP.onStreamRead (internal/stream_base_commons.js:188:23)', + level: 'error', + timestamp: '2020-11-28T11:45:33.876Z' +} +{ + message: 'MongoError: unknown operator: $or\n' + + ' at MessageStream.messageHandler (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/connection.js:268:20)\n' + + ' at MessageStream.emit (events.js:314:20)\n' + + ' at processIncomingData (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n' + + ' at MessageStream._write (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n' + + ' at doWrite (_stream_writable.js:403:12)\n' + + ' at writeOrBuffer (_stream_writable.js:387:5)\n' + + ' at MessageStream.Writable.write (_stream_writable.js:318:11)\n' + + ' at Socket.ondata (_stream_readable.js:719:22)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at addChunk (_stream_readable.js:298:12)\n' + + ' at readableAddChunk (_stream_readable.js:273:9)\n' + + ' at Socket.Readable.push (_stream_readable.js:214:10)\n' + + ' at TCP.onStreamRead (internal/stream_base_commons.js:188:23)', + level: 'error', + timestamp: '2020-11-28T11:46:58.186Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:55:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:06:55.088Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:56:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:08:40.813Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:56:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:10:01.928Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:56:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:11:31.876Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:56:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:12:31.176Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:57:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:13:17.314Z' +} +{ + message: 'CastError: Cast to ObjectId failed for value "undefined" at path "curGivenId" for model "AcceptedOffers"\n' + + ' at model.Query.exec (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4380:21)\n' + + ' at model.Query.Query.then (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/query.js:4472:15)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:57:14\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-28T12:14:15.506Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:387:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)', + level: 'error', + timestamp: '2020-11-29T08:20:50.852Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:387:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)', + level: 'error', + timestamp: '2020-11-29T08:21:33.740Z' +} +{ + message: 'ValidationError: User validation failed: wallet.0.commitment: Cast to Number failed for value "Infinity4250000000" at path "commitment"\n' + + ' at model.Document.invalidate (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n' + + ' at EmbeddedDocument.invalidate (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/types/embedded.js:291:29)\n' + + ' at EmbeddedDocument.$set (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:1290:12)\n' + + ' at EmbeddedDocument.set [as commitment] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/document/compile.js:161:19)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:876:79\n' + + ' at step (/home/hamid/projects/exchange/server/routes/user.js:44:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/routes/user.js:25:53)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:19:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/routes/user.js:15:12)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:854:76\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-30T07:23:57.485Z' +} +{ + message: 'ValidationError: User validation failed: wallet.0.commitment: Cast to Number failed for value "Infinity4250000000" at path "commitment"\n' + + ' at model.Document.invalidate (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n' + + ' at EmbeddedDocument.invalidate (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/types/embedded.js:291:29)\n' + + ' at EmbeddedDocument.$set (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/document.js:1290:12)\n' + + ' at EmbeddedDocument.set [as commitment] (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/helpers/document/compile.js:161:19)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:876:79\n' + + ' at step (/home/hamid/projects/exchange/server/routes/user.js:44:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/routes/user.js:25:53)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:19:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/routes/user.js:15:12)\n' + + ' at /home/hamid/projects/exchange/server/routes/user.js:854:76\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:434:9)', + level: 'error', + timestamp: '2020-11-30T07:24:42.390Z' +} +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:128:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T12:15:31.365Z' +} +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:128:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T12:17:08.918Z' +} +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:128:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T12:19:04.629Z' +} +======= +<<<<<<< HEAD + timestamp: '2020-11-30T11:47:04.308Z' } +>>>>>>> 012bcd70d97c0eb31d1f5d15cae527fce24b6f74 +======= + timestamp: '2020-11-22T07:47:58.875Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.activeoffers index: userId_1 dup key: { userId: ObjectId(\'5fa2c4f34413a067b80199c4\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at commandResponseHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/wireprotocol/command.js:115:25)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)', + level: 'error', + timestamp: '2020-11-22T07:57:04.860Z' } +{ message: + 'TypeError: offers.map(...).catch is not a function\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:154:76\n at step (/home/elliot/Desktop/exchange/server/routes/wallet.js:33:23)\n at Object.next (/home/elliot/Desktop/exchange/server/routes/wallet.js:14:53)\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:8:71\n at new Promise ()\n at __awaiter (/home/elliot/Desktop/exchange/server/routes/wallet.js:4:12)\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:84:93\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-11-22T08:26:51.445Z' } +{ message: + 'TypeError: Cannot read property \'value\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:115:85\n at step (/home/elliot/Desktop/exchange/server/routes/wallet.js:33:23)\n at Object.next (/home/elliot/Desktop/exchange/server/routes/wallet.js:14:53)\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:8:71\n at new Promise ()\n at __awaiter (/home/elliot/Desktop/exchange/server/routes/wallet.js:4:12)\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:94:107\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-11-22T08:34:12.895Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: offers.offerId_1 dup key: { offers.offerId: null }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)\n at addChunk (_stream_readable.js:288:12)', + level: 'error', + timestamp: '2020-11-22T08:37:09.095Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: offers.offerId_1 dup key: { offers.offerId: null }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)\n at addChunk (_stream_readable.js:288:12)', + level: 'error', + timestamp: '2020-11-22T08:38:23.070Z' } +{ message: + 'ParallelSaveError: Can\'t save() the same doc multiple times in parallel. Document: 5fa2987c287741a54c22aa2d\n at model.Model.save (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/model.js:463:20)\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:134:116\n at step (/home/elliot/Desktop/exchange/server/routes/wallet.js:33:23)\n at Object.next (/home/elliot/Desktop/exchange/server/routes/wallet.js:14:53)\n at fulfilled (/home/elliot/Desktop/exchange/server/routes/wallet.js:5:58)\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-11-22T08:40:32.760Z' } +{ message: + 'ValidationError: AcceptedOffers validation failed: buyOrderId: Cast to ObjectId failed for value "b133a6cf-9aea-47af-bfae-0f4bdfd37f16" at path "buyOrderId"\n at model.Document.invalidate (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n at model.$set (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:1290:12)\n at model._handleIndex (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:1019:14)\n at model.$set (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:960:22)\n at model.Document (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:150:12)\n at model.Model (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/model.js:106:12)\n at new model (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/model.js:4685:15)\n at toExecute.push.callback (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/model.js:3051:22)\n at toExecute.forEach (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/model.js:3087:7)\n at Array.forEach ()\n at cb (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/model.js:3086:15)\n at Promise (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/helpers/promiseOrCallback.js:31:5)\n at new Promise ()\n at promiseOrCallback (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/helpers/promiseOrCallback.js:30:10)\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/model.js:3021:10)\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:129:139', + level: 'error', + timestamp: '2020-11-22T08:56:36.647Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: acceptor_1 dup key: { acceptor: ObjectId(\'5fb2604b9d458a21da0af43b\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)\n at addChunk (_stream_readable.js:288:12)', + level: 'error', + timestamp: '2020-11-22T10:14:07.199Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: acceptor_1 dup key: { acceptor: ObjectId(\'5fb2604b9d458a21da0af43b\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)\n at addChunk (_stream_readable.js:288:12)', + level: 'error', + timestamp: '2020-11-22T12:20:12.901Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: acceptor_1 dup key: { acceptor: ObjectId(\'5fb2604b9d458a21da0af43b\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)\n at addChunk (_stream_readable.js:288:12)', + level: 'error', + timestamp: '2020-11-22T12:22:28.824Z' } +{ message: + 'ValidationError: AcceptedOffers validation failed: expiredDate: Path `expiredDate` is required.\n at model.Document.invalidate (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2446:17\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/schematype.js:1225:9\n at process._tickCallback (internal/process/next_tick.js:61:11)', + level: 'error', + timestamp: '2020-11-22T12:33:35.711Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: acceptor_1 dup key: { acceptor: ObjectId(\'5fb2604b9d458a21da0af43b\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at commandResponseHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/wireprotocol/command.js:115:25)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)', + level: 'error', + timestamp: '2020-11-22T12:36:24.139Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: acceptor_1 dup key: { acceptor: ObjectId(\'5fb2604b9d458a21da0af43b\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at commandResponseHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/wireprotocol/command.js:115:25)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)', + level: 'error', + timestamp: '2020-11-22T12:45:59.215Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.activeoffers index: userId_1 dup key: { userId: ObjectId(\'5fa2987c287741a54c22aa2d\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at commandResponseHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/wireprotocol/command.js:115:25)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)', + level: 'error', + timestamp: '2020-11-22T12:47:46.901Z' } +{ message: + 'ValidationError: User validation failed: password: Path `password` is required.\n at model.Document.invalidate (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2446:17\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/schematype.js:1225:9\n at process._tickCallback (internal/process/next_tick.js:61:11)', + level: 'error', + timestamp: '2020-11-22T13:00:42.653Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: acceptor_1 dup key: { acceptor: ObjectId(\'5fb2604b9d458a21da0af43b\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at commandResponseHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/wireprotocol/command.js:115:25)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)', + level: 'error', + timestamp: '2020-11-22T15:48:12.892Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: acceptor_1 dup key: { acceptor: ObjectId(\'5fb2604b9d458a21da0af43b\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at commandResponseHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/wireprotocol/command.js:115:25)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)', + level: 'error', + timestamp: '2020-11-22T15:49:04.892Z' } +{ message: undefined, + level: 'error', + timestamp: '2020-11-22T15:50:51.473Z' } +{ message: undefined, + level: 'error', + timestamp: '2020-11-23T10:41:38.269Z' } +{ message: undefined, + level: 'error', + timestamp: '2020-11-23T10:44:32.884Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: acceptor_1 dup key: { acceptor: ObjectId(\'5fb2604b9d458a21da0af43b\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at commandResponseHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/wireprotocol/command.js:115:25)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)', + level: 'error', + timestamp: '2020-11-23T10:46:47.213Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: acceptor_1 dup key: { acceptor: ObjectId(\'5fb2604b9d458a21da0af43b\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at commandResponseHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/wireprotocol/command.js:115:25)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)', + level: 'error', + timestamp: '2020-11-23T10:47:49.628Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: acceptor_1 dup key: { acceptor: ObjectId(\'5fb2604b9d458a21da0af43b\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at commandResponseHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/wireprotocol/command.js:115:25)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)', + level: 'error', + timestamp: '2020-11-23T10:49:58.054Z' } +{ message: + 'MongoError: E11000 duplicate key error collection: exchange.acceptedoffers index: acceptor_1 dup key: { acceptor: ObjectId(\'5fb2604b9d458a21da0af43b\') }\n at Function.create (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/error.js:57:12)\n at toError (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/utils.js:123:22)\n at coll.s.topology.insert (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/operations/common_functions.js:265:39)\n at handler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/topology.js:942:24)\n at fn (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection_pool.js:350:13)\n at handleOperationResult (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sdam/server.js:558:5)\n at commandResponseHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/wireprotocol/command.js:115:25)\n at MessageStream.messageHandler (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/connection.js:277:5)\n at MessageStream.emit (events.js:198:13)\n at processIncomingData (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:144:12)\n at MessageStream._write (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/cmap/message_stream.js:42:5)\n at doWrite (_stream_writable.js:415:12)\n at writeOrBuffer (_stream_writable.js:399:5)\n at MessageStream.Writable.write (_stream_writable.js:299:11)\n at Socket.ondata (_stream_readable.js:710:20)\n at Socket.emit (events.js:198:13)', + level: 'error', + timestamp: '2020-11-23T11:31:42.074Z' } +{ message: + 'ValidationError: User validation failed: password: Path `password` is required.\n at model.Document.invalidate (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2446:17\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/schematype.js:1225:9\n at process._tickCallback (internal/process/next_tick.js:61:11)', + level: 'error', + timestamp: '2020-11-23T11:33:02.130Z' } +{ message: undefined, + level: 'error', + timestamp: '2020-11-23T11:34:00.750Z' } +{ message: + 'MongoError: Transaction already in progress\n at ClientSession.startTransaction (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sessions.js:212:13)\n at attemptTransaction (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sessions.js:350:11)\n at ClientSession.withTransaction (/home/elliot/Desktop/exchange/server/node_modules/mongodb/lib/core/sessions.js:284:12)\n at _loop_1 (/home/elliot/Desktop/exchange/server/routes/wallet.js:83:49)\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:207:41\n at step (/home/elliot/Desktop/exchange/server/routes/wallet.js:33:23)\n at Object.next (/home/elliot/Desktop/exchange/server/routes/wallet.js:14:53)\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:8:71\n at new Promise ()\n at __awaiter (/home/elliot/Desktop/exchange/server/routes/wallet.js:4:12)\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:71:86\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-11-23T11:44:45.990Z' } +{ message: + 'ValidationError: User validation failed: password: Path `password` is required.\n at model.Document.invalidate (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2446:17\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/schematype.js:1225:9\n at process._tickCallback (internal/process/next_tick.js:61:11)', + level: 'error', + timestamp: '2020-11-23T11:59:50.674Z' } +{ message: + 'ValidationError: User validation failed: password: Path `password` is required.\n at model.Document.invalidate (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2446:17\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/schematype.js:1225:9\n at process._tickCallback (internal/process/next_tick.js:61:11)', + level: 'error', + timestamp: '2020-11-23T14:01:17.776Z' } +{ message: + 'ValidationError: User validation failed: password: Path `password` is required.\n at model.Document.invalidate (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2446:17\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/schematype.js:1225:9\n at process._tickCallback (internal/process/next_tick.js:61:11)', + level: 'error', + timestamp: '2020-11-23T14:11:30.408Z' } +{ message: + 'ValidationError: User validation failed: password: Path `password` is required.\n at model.Document.invalidate (/home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2626:32)\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/document.js:2446:17\n at /home/elliot/Desktop/exchange/server/node_modules/mongoose/lib/schematype.js:1225:9\n at process._tickCallback (internal/process/next_tick.js:61:11)', + level: 'error', + timestamp: '2020-11-23T14:14:49.660Z' } +>>>>>>> 2d5b8ce82afa422db70b7d2b2dfa7a123d855817 +======= +{ + message: 'The Sms service is not responding!', + level: 'error', + timestamp: '2020-11-23T13:27:38.907Z' +} +{ + message: 'The Sms service is not responding!', + level: 'error', + timestamp: '2020-11-23T13:49:08.562Z' +} +>>>>>>> 3c5d0ffa3c870a18254fc5d101dcee707be908b6 +{ + message: 'RpcError: Expected type bool, got object\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T09:39:35.142Z' +} +{ + message: 'ReferenceError: unspentTx is not defined\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:120:17\n' + + ' at Object. (/home/polychain3/exchange/server/middlewares/tryCatch.js:47:42)\n' + + ' at step (/home/polychain3/exchange/server/middlewares/tryCatch.js:33:23)\n' + + ' at Object.next (/home/polychain3/exchange/server/middlewares/tryCatch.js:14:53)\n' + + ' at /home/polychain3/exchange/server/middlewares/tryCatch.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/polychain3/exchange/server/middlewares/tryCatch.js:4:12)\n' + + ' at /home/polychain3/exchange/server/middlewares/tryCatch.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/polychain3/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/polychain3/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/polychain3/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/polychain3/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/polychain3/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at Function.process_params (/home/polychain3/exchange/server/node_modules/express/lib/router/index.js:335:12)\n' + + ' at next (/home/polychain3/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/home/polychain3/exchange/server/node_modules/express/lib/router/index.js:174:3)', + level: 'error', + timestamp: '2020-11-25T10:57:09.572Z' +} +{ + message: 'RpcError: Invalid Bitcoin address: receiver\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T10:58:19.845Z' +} +{ + message: 'RpcError: Invalid Bitcoin address: receiver\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T10:59:26.649Z' +} +{ + message: 'RpcError: Invalid Bitcoin address: receiver\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T11:03:29.241Z' +} +{ + message: 'RpcError: Invalid Bitcoin address: receiver\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T11:04:50.676Z' +} +{ + message: 'RpcError: Invalid Bitcoin address: receiver\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T11:07:24.971Z' +} +{ + message: "RpcError: Data must be hexadecimal string (not 'Hi')\n" + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T11:21:58.764Z' +} +{ + message: "RpcError: Data must be hexadecimal string (not 'tb1qs0uffrs0n84q6v9krwe6ajx04j3mvxh0j96myl')\n" + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T11:24:34.961Z' +} +{ + message: 'TypeError: client.dumpprivkey is not a function\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:92:16\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T12:02:33.945Z' +} +{ + message: undefined, + level: 'error', + timestamp: '2020-11-25T13:04:47.723Z' +} +{ + message: 'RpcError: Invalid parameter, key-value pair must contain exactly one key\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:20:40.389Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:23:21.051Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:28:19.715Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:32:58.151Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:37:09.723Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:47:43.484Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:48:28.082Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:50:01.470Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:53:11.598Z' +} +{ + message: 'RpcError: bad-txns-inputs-missingorspent\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T14:55:06.010Z' +} +{ + message: 'RpcError: bad-txns-vout-empty\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T15:41:01.898Z' +} +{ + message: 'RpcError: bad-txns-vout-empty\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T15:43:00.360Z' +} +{ + message: 'RpcError: min relay fee not met, 0 < 110\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-25T15:43:54.129Z' +} +{ + message: 'RpcError: JSON integer out of range\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T06:50:28.088Z' +} +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:645:102\n' + + ' at baseFindIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:802:11)\n' + + ' at findIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:7280:14)\n' + + ' at Function.find (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5079:21)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:645:25\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:08:45.933Z' +} +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:649:102\n' + + ' at baseFindIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:802:11)\n' + + ' at findIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:7280:14)\n' + + ' at Function.find (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5079:21)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:649:25\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:19:47.704Z' +} +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:651:39\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:20:50.066Z' +} +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:652:39\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:22:43.395Z' +} +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:653:39\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:25:54.910Z' +} +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:654:39\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-28T07:41:59.011Z' +} +{ + message: 'RpcError: Invalid amount\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T12:26:21.294Z' +} +{ + message: 'RpcError: Invalid amount\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T12:35:17.818Z' +} +{ + message: 'RpcError: Invalid amount\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:22:31.939Z' +} +{ + message: 'RpcError: Invalid amount\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:25:45.336Z' +} +{ + message: 'RpcError: bad-txns-in-belowout, value in (0.00003724) < value out (0.00190208)\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:31:26.053Z' +} +{ + message: 'RpcError: bad-txns-in-belowout, value in (0.00003724) < value out (0.00190208)\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:35:24.630Z' +} +{ + message: 'RpcError: Invalid parameter, missing vout key\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:38:11.150Z' +} +{ + message: 'RpcError: min relay fee not met, 100 < 141\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:41:06.896Z' +} +{ + message: 'RpcError: min relay fee not met, 130 < 141\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T13:43:51.288Z' +} +{ + message: 'Error: no auth mechanism defined\n' + + ' at Auth.onRequest (/home/polychain3/exchange/server/node_modules/request/lib/auth.js:132:32)\n' + + ' at Request.auth (/home/polychain3/exchange/server/node_modules/request/request.js:1341:14)\n' + + ' at Request.init (/home/polychain3/exchange/server/node_modules/request/request.js:378:10)\n' + + ' at new Request (/home/polychain3/exchange/server/node_modules/request/request.js:127:8)\n' + + ' at request (/home/polychain3/exchange/server/node_modules/request/index.js:53:10)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:61:12\n' + + ' at Object.apply (/home/polychain3/exchange/server/node_modules/@uphold/request-logger/src/index.js:27:19)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:100:12\n' + + ' at /home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:41:9\n' + + ' at new Promise ()\n' + + ' at Function.postAsync (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:40:38)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:48)\n' + + ' at apply (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:474:27)\n' + + ' at Client.wrapper [as getInfo] (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5337:16)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:127:12\n' + + ' at Object. (/home/polychain3/exchange/server/middlewares/tryCatch.js:47:42)', + level: 'error', + timestamp: '2020-11-28T13:57:59.376Z' +} +{ + message: 'Error: no auth mechanism defined\n' + + ' at Auth.onRequest (/home/polychain3/exchange/server/node_modules/request/lib/auth.js:132:32)\n' + + ' at Request.auth (/home/polychain3/exchange/server/node_modules/request/request.js:1341:14)\n' + + ' at Request.init (/home/polychain3/exchange/server/node_modules/request/request.js:378:10)\n' + + ' at new Request (/home/polychain3/exchange/server/node_modules/request/request.js:127:8)\n' + + ' at request (/home/polychain3/exchange/server/node_modules/request/index.js:53:10)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:61:12\n' + + ' at Object.apply (/home/polychain3/exchange/server/node_modules/@uphold/request-logger/src/index.js:27:19)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:100:12\n' + + ' at /home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:41:9\n' + + ' at new Promise ()\n' + + ' at Function.postAsync (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:40:38)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:48)\n' + + ' at apply (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:476:27)\n' + + ' at Client.wrapper [as createRawTransaction] (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5337:16)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:134:12\n' + + ' at Object. (/home/polychain3/exchange/server/middlewares/tryCatch.js:47:42)', + level: 'error', + timestamp: '2020-11-28T14:03:55.538Z' +} +{ + message: 'Error: no auth mechanism defined\n' + + ' at Auth.onRequest (/home/polychain3/exchange/server/node_modules/request/lib/auth.js:132:32)\n' + + ' at Request.auth (/home/polychain3/exchange/server/node_modules/request/request.js:1341:14)\n' + + ' at Request.init (/home/polychain3/exchange/server/node_modules/request/request.js:378:10)\n' + + ' at new Request (/home/polychain3/exchange/server/node_modules/request/request.js:127:8)\n' + + ' at request (/home/polychain3/exchange/server/node_modules/request/index.js:53:10)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:61:12\n' + + ' at Object.apply (/home/polychain3/exchange/server/node_modules/@uphold/request-logger/src/index.js:27:19)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:100:12\n' + + ' at /home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:41:9\n' + + ' at new Promise ()\n' + + ' at Function.postAsync (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:40:38)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:48)\n' + + ' at apply (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:476:27)\n' + + ' at Client.wrapper [as createRawTransaction] (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5337:16)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:134:12\n' + + ' at Object. (/home/polychain3/exchange/server/middlewares/tryCatch.js:47:42)', + level: 'error', + timestamp: '2020-11-28T14:07:27.188Z' +} +{ + message: 'Error: no auth mechanism defined\n' + + ' at Auth.onRequest (/home/polychain3/exchange/server/node_modules/request/lib/auth.js:132:32)\n' + + ' at Request.auth (/home/polychain3/exchange/server/node_modules/request/request.js:1341:14)\n' + + ' at Request.init (/home/polychain3/exchange/server/node_modules/request/request.js:378:10)\n' + + ' at new Request (/home/polychain3/exchange/server/node_modules/request/request.js:127:8)\n' + + ' at request (/home/polychain3/exchange/server/node_modules/request/index.js:53:10)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:61:12\n' + + ' at Object.apply (/home/polychain3/exchange/server/node_modules/@uphold/request-logger/src/index.js:27:19)\n' + + ' at /home/polychain3/exchange/server/node_modules/request/index.js:100:12\n' + + ' at /home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:41:9\n' + + ' at new Promise ()\n' + + ' at Function.postAsync (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:40:38)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:48)\n' + + ' at apply (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:476:27)\n' + + ' at Client.wrapper [as createRawTransaction] (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5337:16)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:134:12\n' + + ' at Object. (/home/polychain3/exchange/server/middlewares/tryCatch.js:47:42)', + level: 'error', + timestamp: '2020-11-28T14:12:26.042Z' +} +{ + message: 'RpcError: Unauthorized\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:73:13)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T14:18:12.249Z' +} +{ + message: 'RpcError: Invalid parameter, duplicated address: tb1qqera5t2vuuhghtt8z92w3jcx47pu9xmfh4myy6\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at runMicrotasks ()\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T15:37:55.311Z' +} +{ + message: 'RpcError: min relay fee not met, 110 < 141\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at runMicrotasks ()\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T15:41:23.651Z' +} +{ + message: 'RpcError: min relay fee not met, 120 < 141\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at runMicrotasks ()\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T15:41:43.793Z' +} +{ + message: 'RpcError: min relay fee not met, 140 < 141\n' + + ' at getRpcResult (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:39:11)\n' + + ' at Parser.rpc (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/parser.js:82:14)\n' + + ' at Client.command (/home/polychain3/exchange/server/node_modules/bitcoin-core/dist/src/index.js:169:24)\n' + + ' at runMicrotasks ()\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-28T15:41:58.695Z' +} +{ + message: 'connection timed out', + reason: TopologyDescription { + type: 'Single', + setName: null, + maxSetVersion: null, + maxElectionId: null, + servers: Map { + 'localhost:27017' => ServerDescription { + address: 'localhost:27017', + error: MongoNetworkTimeoutError: connection timed out + at connectionFailureError (/home/polychain3/exchange/server/node_modules/mongodb/lib/core/connection/connect.js:342:14) + at Socket. (/home/polychain3/exchange/server/node_modules/mongodb/lib/core/connection/connect.js:310:16) + at Object.onceWrapper (events.js:421:28) + at Socket.emit (events.js:315:20) + at Socket._onTimeout (net.js:482:8) + at listOnTimeout (internal/timers.js:549:17) + at processTimers (internal/timers.js:492:7), + roundTripTime: -1, + lastUpdateTime: 1214368, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] + } + }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: null + }, + level: 'error', + timestamp: '2020-11-30T06:05:14.572Z' +} +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:743:104\n' + + ' at baseFindIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:802:11)\n' + + ' at findIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:7280:14)\n' + + ' at Function.find (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5079:21)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:743:27\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-30T07:28:46.091Z' +} +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:743:104\n' + + ' at baseFindIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:802:11)\n' + + ' at findIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:7280:14)\n' + + ' at Function.find (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5079:21)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:743:27\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-30T07:31:43.854Z' +} +{ + message: "TypeError: Cannot read property 'toString' of undefined\n" + + ' at /home/polychain3/exchange/server/routes/wallet.js:746:104\n' + + ' at baseFindIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:802:11)\n' + + ' at findIndex (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:7280:14)\n' + + ' at Function.find (/home/polychain3/exchange/server/node_modules/lodash/lodash.js:5079:21)\n' + + ' at /home/polychain3/exchange/server/routes/wallet.js:746:27\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)\n' + + ' at runNextTicks (internal/process/task_queues.js:66:3)\n' + + ' at processImmediate (internal/timers.js:429:9)', + level: 'error', + timestamp: '2020-11-30T07:36:17.690Z' +} +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T13:42:01.738Z' +} +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T13:44:46.170Z' +} +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T13:46:43.381Z' +} +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T13:51:06.333Z' +} +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:117:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T15:01:01.200Z' +} +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:117:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T15:04:37.812Z' +} +{ + message: "TypeError: Cannot read property 'length' of undefined\n" + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:117:108\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T15:14:28.319Z' +} +{ + message: 'ReferenceError: offerIds is not defined\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:118:143\n' + + ' at step (/home/hamid/projects/exchange/server/routes/wallet.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/routes/wallet.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/routes/wallet.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:124\n' + + ' at attemptTransaction (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/core/sessions.js:354:15)\n' + + ' at ClientSession.withTransaction (/home/hamid/projects/exchange/server/node_modules/mongodb/lib/core/sessions.js:284:12)\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:116:87\n' + + ' at step (/home/hamid/projects/exchange/server/routes/wallet.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/routes/wallet.js:14:53)\n' + + ' at fulfilled (/home/hamid/projects/exchange/server/routes/wallet.js:5:58)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T15:20:20.115Z' +} +{ + message: 'Error\n' + + ' at new myError (/home/hamid/projects/exchange/server/api/myError.js:20:28)\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:131:93\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-11-30T15:23:23.560Z' +} +{ + message: 'Error\n' + + ' at new myError (/home/hamid/projects/exchange/server/api/myError.js:20:28)\n' + + ' at /home/hamid/projects/exchange/server/routes/wallet.js:132:93\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:97:5)', + level: 'error', + timestamp: '2020-12-01T05:42:16.184Z' +} +<<<<<<< HEAD +======= +>>>>>>> 3c5d0ffa3c870a18254fc5d101dcee707be908b6 +{ + message: 'TypeError: TRONTransferTo_1.TRONTransferTo is not a function\n' + + ' at /Users/Kwin/Documents/exchange/server/routes/user.js:83:22\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:47:42)\n' + + ' at step (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:33:23)\n' + + ' at Object.next (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:14:53)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:4:12)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:41:47\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at Function.process_params (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:335:12)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:174:3)', + level: 'error', + timestamp: '2020-11-30T14:03:03.338Z' +} +{ + message: 'TypeError: TRONTransferTo_1.TRONTransferTo is not a function\n' + + ' at /Users/Kwin/Documents/exchange/server/routes/user.js:83:22\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:47:42)\n' + + ' at step (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:33:23)\n' + + ' at Object.next (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:14:53)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:4:12)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:41:47\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at Function.process_params (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:335:12)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:174:3)', + level: 'error', + timestamp: '2020-11-30T14:05:35.733Z' +} +{ + message: 'TypeError: TRONTransferTo_1.TRONTransferTo is not a function\n' + + ' at /Users/Kwin/Documents/exchange/server/routes/user.js:83:22\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:47:42)\n' + + ' at step (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:33:23)\n' + + ' at Object.next (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:14:53)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:4:12)\n' + + ' at /Users/Kwin/Documents/exchange/server/middlewares/tryCatch.js:41:47\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at Function.process_params (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:335:12)\n' + + ' at next (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/Users/Kwin/Documents/exchange/server/node_modules/express/lib/router/index.js:174:3)', + level: 'error', + timestamp: '2020-11-30T14:05:37.460Z' +} +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +{ message: + 'Error: Invalid JSON RPC response: ""\n at Object.InvalidResponse (/home/elliot/Desktop/exchange/server/node_modules/web3-core-helpers/lib/errors.js:43:16)\n at XMLHttpRequest.request.onreadystatechange (/home/elliot/Desktop/exchange/server/node_modules/web3-providers-http/lib/index.js:95:32)\n at XMLHttpRequestEventTarget.dispatchEvent (/home/elliot/Desktop/exchange/server/node_modules/xhr2-cookies/dist/xml-http-request-event-target.js:34:22)\n at XMLHttpRequest._setReadyState (/home/elliot/Desktop/exchange/server/node_modules/xhr2-cookies/dist/xml-http-request.js:208:14)\n at XMLHttpRequest._onHttpRequestError (/home/elliot/Desktop/exchange/server/node_modules/xhr2-cookies/dist/xml-http-request.js:349:14)\n at ClientRequest. (/home/elliot/Desktop/exchange/server/node_modules/xhr2-cookies/dist/xml-http-request.js:252:61)\n at ClientRequest.emit (events.js:198:13)\n at Socket.socketErrorListener (_http_client.js:401:9)\n at Socket.emit (events.js:198:13)\n at emitErrorNT (internal/streams/destroy.js:91:8)\n at emitErrorAndCloseNT (internal/streams/destroy.js:59:3)\n at process._tickCallback (internal/process/next_tick.js:63:19)', + level: 'error', + timestamp: '2020-12-01T07:46:28.415Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:637:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T07:59:30.210Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:637:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:19:21.378Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:637:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:22:40.743Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:637:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:24:51.027Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:637:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:29:06.016Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:638:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:32:17.106Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:638:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:33:48.720Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:638:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T09:59:28.385Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:638:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T10:06:01.895Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:638:18\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T10:07:40.840Z' } +{ message: undefined, + level: 'error', + timestamp: '2020-12-01T10:55:15.506Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:682:19', + level: 'error', + timestamp: '2020-12-01T11:37:59.354Z' } +{ message: + 'TypeError: Cannot read property \'status\' of undefined\n at /home/elliot/Desktop/exchange/server/routes/wallet.js:682:19\n at process._tickCallback (internal/process/next_tick.js:68:7)', + level: 'error', + timestamp: '2020-12-01T11:50:53.158Z' } +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:12:25.060Z' +} +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:17:36.116Z' +} +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:18:20.159Z' +} +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:19:14.895Z' +} +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:19:26.937Z' +} +{ + message: undefined, + level: 'error', + timestamp: '2020-12-03T08:22:39.860Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:423:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at Function.process_params (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:410:3)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:174:3)\n' + + ' at router (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:47:12)', + level: 'error', + timestamp: '2020-12-03T08:25:53.140Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:423:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at Function.process_params (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:410:3)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:174:3)\n' + + ' at router (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:47:12)', + level: 'error', + timestamp: '2020-12-03T08:26:33.511Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:423:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at Function.process_params (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:410:3)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:174:3)\n' + + ' at router (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:47:12)', + level: 'error', + timestamp: '2020-12-03T08:28:10.424Z' +} +{ + message: "Error: ENOENT: no such file or directory, open './images/coins/golden_bitcoin.png'\n" + + ' at Object.openSync (fs.js:462:3)\n' + + ' at Object.readFileSync (fs.js:364:35)\n' + + ' at /home/hamid/projects/exchange/server/routes/service.js:423:24\n' + + ' at Object. (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:47:42)\n' + + ' at step (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:33:23)\n' + + ' at Object.next (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:14:53)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:8:71\n' + + ' at new Promise ()\n' + + ' at __awaiter (/home/hamid/projects/exchange/server/middlewares/tryCtach.js:4:12)\n' + + ' at /home/hamid/projects/exchange/server/middlewares/tryCtach.js:41:47\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:137:13)\n' + + ' at Route.dispatch (/home/hamid/projects/exchange/server/node_modules/express/lib/router/route.js:112:3)\n' + + ' at Layer.handle [as handle_request] (/home/hamid/projects/exchange/server/node_modules/express/lib/router/layer.js:95:5)\n' + + ' at /home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:281:22\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:354:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at param (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:365:14)\n' + + ' at Function.process_params (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:410:3)\n' + + ' at next (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:275:10)\n' + + ' at Function.handle (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:174:3)\n' + + ' at router (/home/hamid/projects/exchange/server/node_modules/express/lib/router/index.js:47:12)', + level: 'error', + timestamp: '2020-12-03T08:28:45.669Z' +} +<<<<<<< HEAD +>>>>>>> 3c5d0ffa3c870a18254fc5d101dcee707be908b6 +{ + message: 'getaddrinfo ENOTFOUND 9109769f43e4', + reason: TopologyDescription { + type: 'ReplicaSetNoPrimary', + setName: 'rs0', + maxSetVersion: 1, + maxElectionId: 7fffffff0000000000000005, + servers: Map(1) { + '9109769f43e4:27017' => ServerDescription { + address: '9109769f43e4:27017', + error: Error: getaddrinfo ENOTFOUND 9109769f43e4 + at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:67:26) { + name: 'MongoNetworkError' + }, + roundTripTime: -1, + lastUpdateTime: 155175990, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] + } + }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: 9 + }, + level: 'error', + timestamp: '2020-12-05T13:27:41.314Z' +} +{ + message: 'The find action on User Collection with email undefined has some errors: MongooseError: Operation `users.findOne()` buffering timed out after 10000ms', + level: 'error', + timestamp: '2020-12-05T13:27:51.158Z' +} +{ + message: 'getaddrinfo ENOTFOUND 9109769f43e4', + reason: TopologyDescription { + type: 'ReplicaSetNoPrimary', + setName: 'rs0', + maxSetVersion: 1, + maxElectionId: 7fffffff0000000000000005, + servers: Map(1) { + '9109769f43e4:27017' => ServerDescription { + address: '9109769f43e4:27017', + error: Error: getaddrinfo ENOTFOUND 9109769f43e4 + at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:67:26) { + name: 'MongoNetworkError' + }, + roundTripTime: -1, + lastUpdateTime: 155925743, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] + } + }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: 9 + }, + level: 'error', + timestamp: '2020-12-05T13:40:11.212Z' +} +======= +>>>>>>> 90aa51ca7ecfe01c90c76d80734326cf67570b30 +{ + message: 'getaddrinfo ENOTFOUND 9109769f43e4', + reason: TopologyDescription { + type: 'ReplicaSetNoPrimary', + setName: 'rs0', + maxSetVersion: 1, + maxElectionId: 7fffffff0000000000000005, + servers: Map(1) { + '9109769f43e4:27017' => ServerDescription { + address: '9109769f43e4:27017', + error: Error: getaddrinfo ENOTFOUND 9109769f43e4 + at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:67:26) { + name: 'MongoNetworkError' + }, + roundTripTime: -1, + lastUpdateTime: 156197995, + lastWriteDate: null, + opTime: null, + type: 'Unknown', + topologyVersion: undefined, + minWireVersion: 0, + maxWireVersion: 0, + hosts: [], + passives: [], + arbiters: [], + tags: [] + } + }, + stale: false, + compatible: true, + compatibilityError: null, + logicalSessionTimeoutMinutes: null, + heartbeatFrequencyMS: 10000, + localThresholdMS: 15, + commonWireVersion: 9 + }, + level: 'error', + timestamp: '2020-12-05T13:44:43.435Z' +} diff --git a/server/exceptions.log b/server/exceptions.log new file mode 100755 index 0000000..c2c5f3d --- /dev/null +++ b/server/exceptions.log @@ -0,0 +1,20598 @@ +<<<<<<< HEAD +<<<<<<< HEAD +{ error: + TypeError: Cannot read property 'toString' of undefined + at preData (/home/elliot/Desktop/exchange/server/api/walletApi/etheriuem.js:120:86) + at Object.exports.sendEtherFromClient (/home/elliot/Desktop/exchange/server/api/walletApi/etheriuem.js:137:25) + at Object. (/home/elliot/Desktop/exchange/server/index.js:40:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Function.Module.runMain (internal/modules/cjs/loader.js:831:12) + at startup (internal/bootstrap/node.js:283:19) + at bootstrapNodeJSCore (internal/bootstrap/node.js:623:3), + level: 'error', + message: + 'uncaughtException: Cannot read property \'toString\' of undefined\nTypeError: Cannot read property \'toString\' of undefined\n at preData (/home/elliot/Desktop/exchange/server/api/walletApi/etheriuem.js:120:86)\n at Object.exports.sendEtherFromClient (/home/elliot/Desktop/exchange/server/api/walletApi/etheriuem.js:137:25)\n at Object. (/home/elliot/Desktop/exchange/server/index.js:40:16)\n at Module._compile (internal/modules/cjs/loader.js:778:30)\n at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)\n at Module.load (internal/modules/cjs/loader.js:653:32)\n at tryModuleLoad (internal/modules/cjs/loader.js:593:12)\n at Function.Module._load (internal/modules/cjs/loader.js:585:3)\n at Function.Module.runMain (internal/modules/cjs/loader.js:831:12)\n at startup (internal/bootstrap/node.js:283:19)\n at bootstrapNodeJSCore (internal/bootstrap/node.js:623:3)', + stack: + 'TypeError: Cannot read property \'toString\' of undefined\n at preData (/home/elliot/Desktop/exchange/server/api/walletApi/etheriuem.js:120:86)\n at Object.exports.sendEtherFromClient (/home/elliot/Desktop/exchange/server/api/walletApi/etheriuem.js:137:25)\n at Object. (/home/elliot/Desktop/exchange/server/index.js:40:16)\n at Module._compile (internal/modules/cjs/loader.js:778:30)\n at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)\n at Module.load (internal/modules/cjs/loader.js:653:32)\n at tryModuleLoad (internal/modules/cjs/loader.js:593:12)\n at Function.Module._load (internal/modules/cjs/loader.js:585:3)\n at Function.Module.runMain (internal/modules/cjs/loader.js:831:12)\n at startup (internal/bootstrap/node.js:283:19)\n at bootstrapNodeJSCore (internal/bootstrap/node.js:623:3)', + exception: true, + date: 'Mon Nov 30 2020 15:51:06 GMT+0330 (Iran Standard Time)', + process: + { pid: 333886, + uid: 1000, + gid: 1000, + cwd: '/home/elliot/Desktop/exchange/server', + execPath: '/usr/bin/node', + version: 'v10.19.0', + argv: + [ '/usr/bin/node', + '/home/elliot/Desktop/exchange/server/index.js' ], + memoryUsage: + { rss: 109486080, + heapTotal: 74510336, + heapUsed: 31405048, + external: 20162594 } }, + os: + { loadavg: [ 3.443359375, 2.42431640625, 2.1396484375 ], + uptime: 275335 }, + trace: + [ { column: 86, + file: + '/home/elliot/Desktop/exchange/server/api/walletApi/etheriuem.js', + function: 'preData', + line: 120, + method: null, + native: false }, + { column: 25, + file: + '/home/elliot/Desktop/exchange/server/api/walletApi/etheriuem.js', + function: 'Object.exports.sendEtherFromClient', + line: 137, + method: 'sendEtherFromClient', + native: false }, + { column: 16, + file: '/home/elliot/Desktop/exchange/server/index.js', + function: null, + line: 40, + method: null, + native: false }, + { column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 778, + method: '_compile', + native: false }, + { column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 789, + method: '.js', + native: false }, + { column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 653, + method: 'load', + native: false }, + { column: 12, + file: 'internal/modules/cjs/loader.js', + function: 'tryModuleLoad', + line: 593, + method: null, + native: false }, + { column: 3, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 585, + method: '_load', + native: false }, + { column: 12, + file: 'internal/modules/cjs/loader.js', + function: 'Module.runMain', + line: 831, + method: 'runMain', + native: false }, + { column: 19, + file: 'internal/bootstrap/node.js', + function: 'startup', + line: 283, + method: null, + native: false }, + { column: 3, + file: 'internal/bootstrap/node.js', + function: 'bootstrapNodeJSCore', + line: 623, + method: null, + native: false } ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-21T08:44:21.493Z' } +>>>>>>> 27573c746ba7e3cd11ca52ad74e2d3c04a16ca0a +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 21 2020 15:04:59 GMT+0330 (Iran Standard Time)', + process: { + pid: 40440, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 100859904, + heapTotal: 63074304, + heapUsed: 42060432, + external: 20183811, + arrayBuffers: 18705121 + } + }, + os: { loadavg: [ 0.93, 0.59, 0.4 ], uptime: 24153 }, + trace: [ +======= +{ + error: Error: Cannot find module 'mathjs' + Require stack: + - /home/polychain3/exchange/server/api/suggestOffers.js + - /home/polychain3/exchange/server/routes/user.js + - /home/polychain3/exchange/server/index.js + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:965:15) + at Function.Module._load (internal/modules/cjs/loader.js:841:27) + at Module.require (internal/modules/cjs/loader.js:1025:19) + at require (internal/modules/cjs/helpers.js:72:18) + at Object. (/home/polychain3/exchange/server/api/suggestOffers.js:5:12) + at Module._compile (internal/modules/cjs/loader.js:1137:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10) + at Module.load (internal/modules/cjs/loader.js:985:32) + at Function.Module._load (internal/modules/cjs/loader.js:878:14) + at Module.require (internal/modules/cjs/loader.js:1025:19) + at require (internal/modules/cjs/helpers.js:72:18) + at Object. (/home/polychain3/exchange/server/routes/user.js:68:23) + at Module._compile (internal/modules/cjs/loader.js:1137:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10) + at Module.load (internal/modules/cjs/loader.js:985:32) + at Function.Module._load (internal/modules/cjs/loader.js:878:14) { + code: 'MODULE_NOT_FOUND', + requireStack: [ + '/home/polychain3/exchange/server/api/suggestOffers.js', + '/home/polychain3/exchange/server/routes/user.js', + '/home/polychain3/exchange/server/index.js' + ] + }, + level: 'error', + message: "uncaughtException: Cannot find module 'mathjs'\n" + + 'Require stack:\n' + + '- /home/polychain3/exchange/server/api/suggestOffers.js\n' + + '- /home/polychain3/exchange/server/routes/user.js\n' + + '- /home/polychain3/exchange/server/index.js\n' + + "Error: Cannot find module 'mathjs'\n" + + 'Require stack:\n' + + '- /home/polychain3/exchange/server/api/suggestOffers.js\n' + + '- /home/polychain3/exchange/server/routes/user.js\n' + + '- /home/polychain3/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:965:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:841:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:1025:19)\n' + + ' at require (internal/modules/cjs/helpers.js:72:18)\n' + + ' at Object. (/home/polychain3/exchange/server/api/suggestOffers.js:5:12)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1137:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:985:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:878:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:1025:19)\n' + + ' at require (internal/modules/cjs/helpers.js:72:18)\n' + + ' at Object. (/home/polychain3/exchange/server/routes/user.js:68:23)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1137:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:985:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:878:14)', + stack: "Error: Cannot find module 'mathjs'\n" + + 'Require stack:\n' + + '- /home/polychain3/exchange/server/api/suggestOffers.js\n' + + '- /home/polychain3/exchange/server/routes/user.js\n' + + '- /home/polychain3/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:965:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:841:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:1025:19)\n' + + ' at require (internal/modules/cjs/helpers.js:72:18)\n' + + ' at Object. (/home/polychain3/exchange/server/api/suggestOffers.js:5:12)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1137:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:985:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:878:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:1025:19)\n' + + ' at require (internal/modules/cjs/helpers.js:72:18)\n' + + ' at Object. (/home/polychain3/exchange/server/routes/user.js:68:23)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1137:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:985:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:878:14)', + exception: true, + date: 'Wed Nov 25 2020 10:04:30 GMT+0330 (Iran Standard Time)', + process: { + pid: 9019, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 88936448, + heapTotal: 59142144, + heapUsed: 26472824, + external: 20047777, + arrayBuffers: 18613431 + } + }, + os: { + loadavg: [ 0.95556640625, 1.1416015625, 1.12109375 ], + uptime: 3387 + }, + trace: [ + { + column: 15, + file: 'internal/modules/cjs/loader.js', + function: 'Module._resolveFilename', + line: 965, + method: '_resolveFilename', + native: false + }, + { + column: 27, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 841, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 1025, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 72, + method: null, + native: false + }, + { + column: 12, + file: '/home/polychain3/exchange/server/api/suggestOffers.js', + function: null, + line: 5, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1137, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1157, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 985, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 878, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 1025, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 72, + method: null, + native: false + }, + { + column: 23, + file: '/home/polychain3/exchange/server/routes/user.js', + function: null, + line: 68, + method: null, + native: false + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1137, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1157, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 985, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 878, + method: '_load', + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-21T11:34:59.089Z' +======= + timestamp: '2020-11-25T06:34:30.288Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +======= +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 21 2020 15:21:58 GMT+0330 (Iran Standard Time)', + process: { + pid: 43855, +======= + date: 'Wed Nov 25 2020 10:06:37 GMT+0330 (Iran Standard Time)', + process: { + pid: 9187, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 100487168, + heapTotal: 63336448, + heapUsed: 42202872, + external: 20172596, + arrayBuffers: 18693906 + } + }, + os: { loadavg: [ 0.82, 0.8, 0.65 ], uptime: 25172 }, +======= + rss: 127815680, + heapTotal: 84557824, + heapUsed: 66127016, + external: 21339292, + arrayBuffers: 19874051 + } + }, + os: { + loadavg: [ 1.34912109375, 1.197265625, 1.13720703125 ], + uptime: 3514 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + date: 'Sun Nov 29 2020 07:31:01 GMT-0500 (Eastern Standard Time)', + process: { + pid: 50332, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 112680960, + heapTotal: 75755520, + heapUsed: 44006936, + external: 21399493, + arrayBuffers: 18541135 + } + }, + os: { + loadavg: [ 3.78857421875, 3.43359375, 2.95458984375 ], + uptime: 416622 + }, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-21T11:51:58.006Z' +======= + timestamp: '2020-11-25T06:36:37.439Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-29T12:31:01.373Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +======= +>>>>>>> 33d901f8cf74425115e1391ed32ff3e60247c03d +======= +>>>>>>> bbc8b8d794d526b7eda8268575c971a49a389b1b +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Tue Nov 24 2020 12:58:39 GMT+0330 (Iran Standard Time)', + process: { + pid: 31208, +======= + date: 'Wed Nov 25 2020 10:09:25 GMT+0330 (Iran Standard Time)', + process: { + pid: 9407, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130797568, + heapTotal: 87441408, + heapUsed: 57644744, + external: 19983361, + arrayBuffers: 18504671 + } + }, + os: { loadavg: [ 1.08, 0.76, 0.54 ], uptime: 16053 }, +======= + rss: 126763008, + heapTotal: 84557824, + heapUsed: 66188680, + external: 21339292, + arrayBuffers: 19874051 + } + }, + os: { + loadavg: [ 1.12646484375, 1.12353515625, 1.10986328125 ], + uptime: 3682 +======= + date: 'Sun Nov 29 2020 07:36:53 GMT-0500 (Eastern Standard Time)', + process: { + pid: 50506, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 115441664, + heapTotal: 80216064, + heapUsed: 56076320, + external: 20453249, + arrayBuffers: 18870211 + } + }, + os: { + loadavg: [ 2.80078125, 2.95947265625, 2.89599609375 ], + uptime: 416974 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-24T09:28:39.524Z' +======= + timestamp: '2020-11-25T06:39:25.143Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-29T12:36:53.470Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Tue Nov 24 2020 15:21:01 GMT+0330 (Iran Standard Time)', + process: { + pid: 54064, +======= + date: 'Wed Nov 25 2020 11:17:31 GMT+0330 (Iran Standard Time)', + process: { + pid: 13758, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131305472, + heapTotal: 87703552, + heapUsed: 57410888, + external: 19983361, + arrayBuffers: 18504671 + } + }, + os: { loadavg: [ 1.58, 1.11, 0.7 ], uptime: 24595 }, +======= + rss: 126496768, + heapTotal: 84557824, + heapUsed: 66319680, + external: 21331100, + arrayBuffers: 19865859 + } + }, + os: { + loadavg: [ 0.68798828125, 0.79638671875, 0.55126953125 ], + uptime: 7768 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + date: 'Sun Nov 29 2020 07:37:50 GMT-0500 (Eastern Standard Time)', + process: { + pid: 50559, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 106418176, + heapTotal: 69988352, + heapUsed: 49558872, + external: 21008848, + arrayBuffers: 19425810 + } + }, + os: { + loadavg: [ 3.1796875, 3.0400390625, 2.9287109375 ], + uptime: 417031 + }, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-24T11:51:01.669Z' +======= + timestamp: '2020-11-25T07:47:31.029Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-29T12:37:50.405Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Tue Nov 24 2020 15:24:13 GMT+0330 (Iran Standard Time)', + process: { + pid: 54673, +======= + date: 'Wed Nov 25 2020 11:19:10 GMT+0330 (Iran Standard Time)', + process: { + pid: 13935, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 129695744, + heapTotal: 86917120, + heapUsed: 57590632, + external: 19983361, + arrayBuffers: 18504671 + } + }, + os: { loadavg: [ 0.53, 0.82, 0.66 ], uptime: 24787 }, +======= + rss: 128024576, + heapTotal: 84557824, + heapUsed: 66066016, + external: 21339292, + arrayBuffers: 19874051 + } + }, + os: { + loadavg: [ 0.91650390625, 0.81884765625, 0.5810546875 ], + uptime: 7867 +======= + date: 'Sun Nov 29 2020 07:41:48 GMT-0500 (Eastern Standard Time)', + process: { + pid: 50702, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 99061760, + heapTotal: 70508544, + heapUsed: 50529304, + external: 21325704, + arrayBuffers: 19742666 + } + }, + os: { + loadavg: [ 2.5595703125, 2.81005859375, 2.849609375 ], + uptime: 417269 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-24T11:54:13.913Z' +======= + timestamp: '2020-11-25T07:49:10.785Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-29T12:41:48.316Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Tue Nov 24 2020 15:27:05 GMT+0330 (Iran Standard Time)', + process: { + pid: 55261, +======= + date: 'Wed Nov 25 2020 13:07:25 GMT+0330 (Iran Standard Time)', + process: { + pid: 19840, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 125816832, + heapTotal: 83771392, + heapUsed: 63007016, + external: 20790459, + arrayBuffers: 19311769 + } + }, + os: { loadavg: [ 0.76, 0.74, 0.65 ], uptime: 24959 }, +======= + rss: 126955520, + heapTotal: 84557824, + heapUsed: 66232248, + external: 21480391, + arrayBuffers: 20015150 + } + }, + os: { + loadavg: [ 0.39111328125, 0.1572265625, 0.1025390625 ], + uptime: 14362 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + date: 'Sun Nov 29 2020 07:42:44 GMT-0500 (Eastern Standard Time)', + process: { + pid: 50743, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 109047808, + heapTotal: 73134080, + heapUsed: 48904088, + external: 20745430, + arrayBuffers: 19162392 + } + }, + os: { loadavg: [ 2.462890625, 2.724609375, 2.8125 ], uptime: 417325 }, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-24T11:57:05.548Z' +======= + timestamp: '2020-11-25T09:37:25.510Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-29T12:42:44.576Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +======= + timestamp: '2020-11-23T12:35:37.178Z' } +>>>>>>> 2d5b8ce82afa422db70b7d2b2dfa7a123d855817 +{ +<<<<<<< HEAD + error: OverwriteModelError: Cannot overwrite `ActiveOffers` model once compiled. + at Mongoose.model (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/index.js:537:13) + at Object. (/home/hamid/projects/exchange/server/db/activeOffers.js:45:34) + at Module._compile (internal/modules/cjs/loader.js:1015:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10) + at Module.load (internal/modules/cjs/loader.js:879:32) + at Function.Module._load (internal/modules/cjs/loader.js:724:14) + at Module.require (internal/modules/cjs/loader.js:903:19) + at require (internal/modules/cjs/helpers.js:74:18) + at Object. (/home/hamid/projects/exchange/server/routes/wallet.js:49:22) + at Module._compile (internal/modules/cjs/loader.js:1015:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10) + at Module.load (internal/modules/cjs/loader.js:879:32) + at Function.Module._load (internal/modules/cjs/loader.js:724:14) + at Module.require (internal/modules/cjs/loader.js:903:19) + at require (internal/modules/cjs/helpers.js:74:18) + at Object. (/home/hamid/projects/exchange/server/index.js:84:16), + level: 'error', + message: 'uncaughtException: Cannot overwrite `ActiveOffers` model once compiled.\n' + + 'OverwriteModelError: Cannot overwrite `ActiveOffers` model once compiled.\n' + + ' at Mongoose.model (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/index.js:537:13)\n' + + ' at Object. (/home/hamid/projects/exchange/server/db/activeOffers.js:45:34)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1015:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:879:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:724:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:903:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/routes/wallet.js:49:22)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1015:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:879:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:724:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:903:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:84:16)', + stack: 'OverwriteModelError: Cannot overwrite `ActiveOffers` model once compiled.\n' + + ' at Mongoose.model (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/index.js:537:13)\n' + + ' at Object. (/home/hamid/projects/exchange/server/db/activeOffers.js:45:34)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1015:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:879:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:724:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:903:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/routes/wallet.js:49:22)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1015:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:879:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:724:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:903:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:84:16)', + exception: true, +<<<<<<< HEAD + date: 'Wed Nov 25 2020 09:39:32 GMT+0330 (Iran Standard Time)', + process: { + pid: 11671, +======= + date: 'Wed Nov 25 2020 13:09:29 GMT+0330 (Iran Standard Time)', + process: { + pid: 20034, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130224128, + heapTotal: 87183360, + heapUsed: 56756064, + external: 19981057, + arrayBuffers: 18502367 + } + }, + os: { loadavg: [ 1.65, 1.06, 0.76 ], uptime: 3438 }, +======= + rss: 127832064, + heapTotal: 84557824, + heapUsed: 66061272, + external: 21339292, + arrayBuffers: 19874051 + } + }, + os: { + loadavg: [ 0.9140625, 0.43017578125, 0.2119140625 ], + uptime: 14487 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 13, + file: '/home/hamid/projects/exchange/server/node_modules/mongoose/lib/index.js', + function: 'Mongoose.model', + line: 537, + method: 'model', + native: false + }, + { + column: 34, + file: '/home/hamid/projects/exchange/server/db/activeOffers.js', + function: null, + line: 45, +======= + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, + date: 'Sun Nov 29 2020 07:49:37 GMT-0500 (Eastern Standard Time)', + process: { + pid: 50913, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 96522240, + heapTotal: 79429632, + heapUsed: 57203016, + external: 20634588, + arrayBuffers: 19051550 + } + }, + os: { + loadavg: [ 2.765625, 2.7978515625, 2.83935546875 ], + uptime: 417738 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1015, + method: '_compile', + native: false +<<<<<<< HEAD + }, +======= + } + ], +<<<<<<< HEAD + timestamp: '2020-11-25T09:39:29.964Z' +======= + timestamp: '2020-11-29T12:49:37.260Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD + date: 'Wed Nov 25 2020 13:10:24 GMT+0330 (Iran Standard Time)', + process: { + pid: 20155, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', +======= + date: 'Sun Nov 29 2020 07:50:48 GMT-0500 (Eastern Standard Time)', + process: { + pid: 50954, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 127721472, + heapTotal: 84557824, + heapUsed: 66321040, + external: 21488583, + arrayBuffers: 20023342 + } + }, + os: { + loadavg: [ 1.09765625, 0.52490234375, 0.2529296875 ], + uptime: 14541 +======= + rss: 53514240, + heapTotal: 79691776, + heapUsed: 56768648, + external: 20626146, + arrayBuffers: 19043108 + } + }, + os: { + loadavg: [ 2.45166015625, 2.701171875, 2.79833984375 ], + uptime: 417809 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, + trace: [ +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + { +<<<<<<< HEAD + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1035, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 879, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 724, + method: '_load', +======= + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + native: false +<<<<<<< HEAD + }, +======= + } + ], +<<<<<<< HEAD + timestamp: '2020-11-25T09:40:24.091Z' +======= + timestamp: '2020-11-29T12:50:48.304Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD + date: 'Wed Nov 25 2020 13:31:09 GMT+0330 (Iran Standard Time)', + process: { + pid: 21524, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', +======= + date: 'Sun Nov 29 2020 07:54:11 GMT-0500 (Eastern Standard Time)', + process: { + pid: 51027, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 126537728, + heapTotal: 84557824, + heapUsed: 66235192, + external: 21488684, + arrayBuffers: 20023443 + } + }, + os: { + loadavg: [ 0.70751953125, 0.52001953125, 0.39892578125 ], + uptime: 15786 +======= + rss: 111255552, + heapTotal: 78372864, + heapUsed: 47132224, + external: 21149072, + arrayBuffers: 19566034 + } + }, + os: { + loadavg: [ 3.24853515625, 2.9892578125, 2.89697265625 ], + uptime: 418012 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, + trace: [ +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + { + column: 19, +<<<<<<< HEAD + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 903, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 74, +======= + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + method: null, + native: false + }, + { +<<<<<<< HEAD + column: 22, + file: '/home/hamid/projects/exchange/server/routes/wallet.js', + function: null, + line: 49, +======= + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + method: null, + native: false +<<<<<<< HEAD + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1015, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1035, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 879, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 724, + method: '_load', + native: false + }, +======= + } + ], +<<<<<<< HEAD + timestamp: '2020-11-25T10:01:09.313Z' +======= + timestamp: '2020-11-29T12:54:11.189Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD + date: 'Wed Nov 25 2020 14:25:33 GMT+0330 (Iran Standard Time)', + process: { + pid: 25068, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', +======= + date: 'Sun Nov 29 2020 08:01:10 GMT-0500 (Eastern Standard Time)', + process: { + pid: 51143, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 126808064, + heapTotal: 84557824, + heapUsed: 66328016, + external: 21358999, + arrayBuffers: 19893758 + } + }, + os: { + loadavg: [ 0.19970703125, 0.4150390625, 0.42626953125 ], + uptime: 19050 +======= + rss: 105529344, + heapTotal: 79429632, + heapUsed: 57111320, + external: 20663786, + arrayBuffers: 19080748 + } + }, + os: { + loadavg: [ 3.30615234375, 2.966796875, 2.93212890625 ], + uptime: 418431 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, + trace: [ +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + { + column: 19, +<<<<<<< HEAD + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 903, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 74, +======= + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + method: null, + native: false + }, + { +<<<<<<< HEAD + column: 16, + file: '/home/hamid/projects/exchange/server/index.js', + function: null, + line: 84, +======= + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-25T06:09:32.464Z' +======= + timestamp: '2020-11-25T10:55:33.541Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: OverwriteModelError: Cannot overwrite `ActiveOffers` model once compiled. + at Mongoose.model (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/index.js:537:13) + at Object. (/home/hamid/projects/exchange/server/db/activeOffers.js:45:34) + at Module._compile (internal/modules/cjs/loader.js:1015:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10) + at Module.load (internal/modules/cjs/loader.js:879:32) + at Function.Module._load (internal/modules/cjs/loader.js:724:14) + at Module.require (internal/modules/cjs/loader.js:903:19) + at require (internal/modules/cjs/helpers.js:74:18) + at Object. (/home/hamid/projects/exchange/server/routes/wallet.js:49:22) + at Module._compile (internal/modules/cjs/loader.js:1015:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10) + at Module.load (internal/modules/cjs/loader.js:879:32) + at Function.Module._load (internal/modules/cjs/loader.js:724:14) + at Module.require (internal/modules/cjs/loader.js:903:19) + at require (internal/modules/cjs/helpers.js:74:18) + at Object. (/home/hamid/projects/exchange/server/index.js:84:16), + level: 'error', + message: 'uncaughtException: Cannot overwrite `ActiveOffers` model once compiled.\n' + + 'OverwriteModelError: Cannot overwrite `ActiveOffers` model once compiled.\n' + + ' at Mongoose.model (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/index.js:537:13)\n' + + ' at Object. (/home/hamid/projects/exchange/server/db/activeOffers.js:45:34)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1015:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:879:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:724:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:903:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/routes/wallet.js:49:22)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1015:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:879:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:724:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:903:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:84:16)', + stack: 'OverwriteModelError: Cannot overwrite `ActiveOffers` model once compiled.\n' + + ' at Mongoose.model (/home/hamid/projects/exchange/server/node_modules/mongoose/lib/index.js:537:13)\n' + + ' at Object. (/home/hamid/projects/exchange/server/db/activeOffers.js:45:34)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1015:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:879:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:724:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:903:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/routes/wallet.js:49:22)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1015:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1035:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:879:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:724:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:903:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:84:16)', + exception: true, +<<<<<<< HEAD + date: 'Wed Nov 25 2020 09:42:38 GMT+0330 (Iran Standard Time)', + process: { + pid: 12095, +======= + date: 'Wed Nov 25 2020 14:26:59 GMT+0330 (Iran Standard Time)', + process: { + pid: 25195, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 128671744, + heapTotal: 86921216, + heapUsed: 56518224, + external: 19981057, + arrayBuffers: 18502367 + } + }, + os: { loadavg: [ 0.47, 0.74, 0.69 ], uptime: 3624 }, +======= + rss: 126418944, + heapTotal: 84557824, + heapUsed: 66393232, + external: 21358999, + arrayBuffers: 19893758 + } +======= + timestamp: '2020-11-29T13:01:10.950Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, + date: 'Sun Nov 29 2020 08:28:39 GMT-0500 (Eastern Standard Time)', + process: { + pid: 51443, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 116080640, + heapTotal: 79691776, + heapUsed: 56954632, + external: 20634338, + arrayBuffers: 19051300 + } + }, + os: { + loadavg: [ 2.0830078125, 2.400390625, 2.76806640625 ], + uptime: 420080 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, + os: { loadavg: [ 0.87109375, 0.541015625, 0.466796875 ], uptime: 19137 }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { +<<<<<<< HEAD + column: 13, + file: '/home/hamid/projects/exchange/server/node_modules/mongoose/lib/index.js', + function: 'Mongoose.model', + line: 537, + method: 'model', + native: false + }, + { + column: 34, + file: '/home/hamid/projects/exchange/server/db/activeOffers.js', + function: null, + line: 45, +======= + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + method: null, + native: false + }, + { +<<<<<<< HEAD + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1015, + method: '_compile', + native: false +<<<<<<< HEAD + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1035, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 879, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 724, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 903, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 74, + method: null, + native: false + }, + { + column: 22, + file: '/home/hamid/projects/exchange/server/routes/wallet.js', + function: null, + line: 49, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1015, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1035, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 879, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 724, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 903, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 74, + method: null, + native: false + }, + { + column: 16, + file: '/home/hamid/projects/exchange/server/index.js', + function: null, + line: 84, +======= + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-25T06:12:38.310Z' +======= + } + ], + timestamp: '2020-11-25T10:56:59.928Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-29T13:28:39.908Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Wed Nov 25 2020 09:45:00 GMT+0330 (Iran Standard Time)', + process: { + pid: 12344, +======= + date: 'Wed Nov 25 2020 14:28:08 GMT+0330 (Iran Standard Time)', + process: { + pid: 25328, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 129933312, + heapTotal: 86921216, + heapUsed: 58583352, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.87, 0.72, 0.68 ], uptime: 3766 }, +======= + rss: 127344640, + heapTotal: 84557824, + heapUsed: 66353648, + external: 21358999, + arrayBuffers: 19893758 + } + }, + os: { + loadavg: [ 1.63232421875, 0.791015625, 0.556640625 ], + uptime: 19205 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + date: 'Sun Nov 29 2020 08:30:12 GMT-0500 (Eastern Standard Time)', + process: { + pid: 51489, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 112893952, + heapTotal: 81518592, + heapUsed: 45859904, + external: 20947160, + arrayBuffers: 19364122 + } + }, + os: { + loadavg: [ 2.42919921875, 2.48291015625, 2.76220703125 ], + uptime: 420173 + }, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-25T06:15:00.504Z' +======= + timestamp: '2020-11-25T10:58:08.221Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-29T13:30:12.908Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Wed Nov 25 2020 10:12:46 GMT+0330 (Iran Standard Time)', + process: { + pid: 15150, +======= + date: 'Wed Nov 25 2020 14:29:21 GMT+0330 (Iran Standard Time)', + process: { + pid: 25504, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131219456, + heapTotal: 87445504, + heapUsed: 58851992, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.62, 0.44, 0.45 ], uptime: 5433 }, +======= + rss: 125759488, + heapTotal: 84557824, + heapUsed: 66299776, + external: 21339393, + arrayBuffers: 19874152 + } + }, + os: { + loadavg: [ 1.36474609375, 0.87255859375, 0.60107421875 ], + uptime: 19279 +======= + date: 'Sun Nov 29 2020 08:37:52 GMT-0500 (Eastern Standard Time)', + process: { + pid: 51552, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 106102784, + heapTotal: 70508544, + heapUsed: 50079856, + external: 20990889, + arrayBuffers: 19407851 + } + }, + os: { + loadavg: [ 2.4052734375, 2.31298828125, 2.5517578125 ], + uptime: 420633 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-25T06:42:46.775Z' +======= + timestamp: '2020-11-25T10:59:21.935Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-29T13:37:52.136Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 09:23:21 GMT+0330 (Iran Standard Time)', + process: { + pid: 8210, +======= + date: 'Wed Nov 25 2020 14:33:26 GMT+0330 (Iran Standard Time)', + process: { + pid: 25854, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 129941504, + heapTotal: 87707648, + heapUsed: 58411408, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 1.39, 0.71, 0.56 ], uptime: 2333 }, +======= + rss: 126595072, + heapTotal: 84557824, + heapUsed: 66180184, + external: 21339393, + arrayBuffers: 19874152 + } + }, + os: { + loadavg: [ 1.27685546875, 0.83251953125, 0.6298828125 ], + uptime: 19523 +======= + date: 'Mon Nov 30 2020 09:02:10 GMT-0500 (Eastern Standard Time)', + process: { + pid: 52476, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 106835968, + heapTotal: 70246400, + heapUsed: 50236736, + external: 21203087, + arrayBuffers: 19620049 + } + }, + os: { + loadavg: [ 2.01025390625, 1.92138671875, 1.9609375 ], + uptime: 508491 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T05:53:21.459Z' +======= + timestamp: '2020-11-25T11:03:26.025Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T14:02:10.878Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 09:33:41 GMT+0330 (Iran Standard Time)', + process: { + pid: 9940, +======= + date: 'Wed Nov 25 2020 14:34:43 GMT+0330 (Iran Standard Time)', + process: { + pid: 25982, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130768896, + heapTotal: 87445504, + heapUsed: 58277424, + external: 20021370, + arrayBuffers: 18542680 + } + }, + os: { loadavg: [ 0.99, 0.68, 0.61 ], uptime: 2953 }, +======= + rss: 126066688, + heapTotal: 84557824, + heapUsed: 66245616, + external: 21339393, + arrayBuffers: 19874152 + } + }, + os: { + loadavg: [ 1.1181640625, 0.87255859375, 0.65771484375 ], + uptime: 19600 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + date: 'Mon Nov 30 2020 09:05:28 GMT-0500 (Eastern Standard Time)', + process: { + pid: 52539, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 104386560, + heapTotal: 79691776, + heapUsed: 57137864, + external: 20676090, + arrayBuffers: 19093052 + } + }, + os: { loadavg: [ 1.94140625, 1.96484375, 1.9765625 ], uptime: 508689 }, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T06:03:41.408Z' +======= + timestamp: '2020-11-25T11:04:43.141Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T14:05:28.375Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 09:35:49 GMT+0330 (Iran Standard Time)', + process: { + pid: 10257, +======= + date: 'Wed Nov 25 2020 14:37:13 GMT+0330 (Iran Standard Time)', + process: { + pid: 26187, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130531328, + heapTotal: 87183360, + heapUsed: 58491424, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.93, 0.72, 0.63 ], uptime: 3081 }, +======= + rss: 126373888, + heapTotal: 84557824, + heapUsed: 66530632, + external: 21559999, + arrayBuffers: 20094758 + } + }, + os: { + loadavg: [ 0.6806640625, 0.73681640625, 0.63525390625 ], + uptime: 19750 +======= + date: 'Mon Nov 30 2020 09:19:46 GMT-0500 (Eastern Standard Time)', + process: { + pid: 52636, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 114978816, + heapTotal: 79691776, + heapUsed: 57084120, + external: 20583354, + arrayBuffers: 19000316 + } + }, + os: { + loadavg: [ 2.54931640625, 2.19091796875, 2.04052734375 ], + uptime: 509547 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T06:05:49.482Z' +======= + timestamp: '2020-11-25T11:07:13.517Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: /home/polychain3/exchange/server/routes/wallet.js:68 + console.log("hte address is=>>>>>>>", typeof ); + ^ + + SyntaxError: Unexpected token ')' + at wrapSafe (internal/modules/cjs/loader.js:1053:16) + at Module._compile (internal/modules/cjs/loader.js:1101:27) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10) + at Module.load (internal/modules/cjs/loader.js:985:32) + at Function.Module._load (internal/modules/cjs/loader.js:878:14) + at Module.require (internal/modules/cjs/loader.js:1025:19) + at require (internal/modules/cjs/helpers.js:72:18) + at Object. (/home/polychain3/exchange/server/index.js:84:16) + at Module._compile (internal/modules/cjs/loader.js:1137:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10) + at Module.load (internal/modules/cjs/loader.js:985:32) + at Function.Module._load (internal/modules/cjs/loader.js:878:14) + at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12) + at internal/main/run_main_module.js:17:47, + level: 'error', + message: "uncaughtException: Unexpected token ')'\n" + + '/home/polychain3/exchange/server/routes/wallet.js:68\n' + + ' console.log("hte address is=>>>>>>>", typeof );\n' + + ' ^\n' + + '\n' + + "SyntaxError: Unexpected token ')'\n" + + ' at wrapSafe (internal/modules/cjs/loader.js:1053:16)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1101:27)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:985:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:878:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:1025:19)\n' + + ' at require (internal/modules/cjs/helpers.js:72:18)\n' + + ' at Object. (/home/polychain3/exchange/server/index.js:84:16)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1137:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:985:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:878:14)\n' + + ' at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)\n' + + ' at internal/main/run_main_module.js:17:47', + stack: '/home/polychain3/exchange/server/routes/wallet.js:68\n' + + ' console.log("hte address is=>>>>>>>", typeof );\n' + + ' ^\n' + + '\n' + + "SyntaxError: Unexpected token ')'\n" + + ' at wrapSafe (internal/modules/cjs/loader.js:1053:16)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1101:27)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:985:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:878:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:1025:19)\n' + + ' at require (internal/modules/cjs/helpers.js:72:18)\n' + + ' at Object. (/home/polychain3/exchange/server/index.js:84:16)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1137:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:985:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:878:14)\n' + + ' at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)\n' + + ' at internal/main/run_main_module.js:17:47', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 09:38:52 GMT+0330 (Iran Standard Time)', + process: { + pid: 10550, +======= + date: 'Wed Nov 25 2020 14:51:36 GMT+0330 (Iran Standard Time)', + process: { + pid: 27119, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131575808, + heapTotal: 86921216, + heapUsed: 58597080, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.92, 0.67, 0.62 ], uptime: 3263 }, +======= + rss: 119296000, + heapTotal: 79052800, + heapUsed: 60575600, + external: 20822354, + arrayBuffers: 19357113 + } + }, + os: { + loadavg: [ 0.81298828125, 0.59033203125, 0.5654296875 ], + uptime: 20613 +======= + timestamp: '2020-11-30T14:19:46.021Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, + date: 'Mon Nov 30 2020 09:21:35 GMT-0500 (Eastern Standard Time)', + process: { + pid: 52718, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 115691520, + heapTotal: 79691776, + heapUsed: 56930208, + external: 20576664, + arrayBuffers: 18993626 + } + }, + os: { + loadavg: [ 2.08203125, 2.13525390625, 2.03564453125 ], + uptime: 509656 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 16, + file: 'internal/modules/cjs/loader.js', + function: 'wrapSafe', + line: 1053, + method: null, + native: false + }, + { + column: 27, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1101, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1157, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 985, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 878, + method: '_load', + native: false + }, + { + column: 19, +<<<<<<< HEAD + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 1025, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 72, +======= + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + method: null, + native: false + }, + { +<<<<<<< HEAD + column: 16, + file: '/home/polychain3/exchange/server/index.js', + function: null, + line: 84, +======= + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1137, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1157, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 985, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 878, + method: '_load', + native: false + }, + { + column: 12, + file: 'internal/modules/run_main.js', + function: 'Function.executeUserEntryPoint [as runMain]', + line: 71, + method: 'executeUserEntryPoint [as runMain]', + native: false + }, + { + column: 47, + file: 'internal/main/run_main_module.js', + function: null, + line: 17, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T06:08:52.070Z' +======= + timestamp: '2020-11-25T11:21:36.238Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T14:21:35.490Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 09:39:25 GMT+0330 (Iran Standard Time)', + process: { + pid: 10665, +======= + date: 'Wed Nov 25 2020 14:51:51 GMT+0330 (Iran Standard Time)', + process: { + pid: 27151, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130756608, + heapTotal: 87707648, + heapUsed: 58430568, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.95, 0.7, 0.63 ], uptime: 3297 }, +======= + rss: 126255104, + heapTotal: 84557824, + heapUsed: 66552728, + external: 21559892, + arrayBuffers: 20094651 + } + }, + os: { + loadavg: [ 0.84228515625, 0.60986328125, 0.572265625 ], + uptime: 20628 +======= + date: 'Mon Nov 30 2020 09:24:22 GMT-0500 (Eastern Standard Time)', + process: { + pid: 52778, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 115167232, + heapTotal: 79691776, + heapUsed: 56832592, + external: 20600082, + arrayBuffers: 19017044 + } + }, + os: { + loadavg: [ 2.9072265625, 2.4169921875, 2.15966796875 ], + uptime: 509823 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T06:09:25.657Z' +======= + timestamp: '2020-11-25T11:21:51.797Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T14:24:22.910Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 09:41:27 GMT+0330 (Iran Standard Time)', + process: { + pid: 10947, +======= + date: 'Wed Nov 25 2020 14:54:30 GMT+0330 (Iran Standard Time)', + process: { + pid: 27385, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131330048, + heapTotal: 87445504, + heapUsed: 58451528, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.83, 0.66, 0.62 ], uptime: 3418 }, +======= + rss: 127451136, + heapTotal: 84557824, + heapUsed: 66113464, + external: 21339393, + arrayBuffers: 19874152 + } + }, + os: { + loadavg: [ 0.64208984375, 0.62841796875, 0.58203125 ], + uptime: 20787 +======= + date: 'Mon Nov 30 2020 09:25:51 GMT-0500 (Eastern Standard Time)', + process: { + pid: 52832, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 112205824, + heapTotal: 75755520, + heapUsed: 44221208, + external: 21415962, + arrayBuffers: 18469330 + } + }, + os: { + loadavg: [ 2.0595703125, 2.298828125, 2.13916015625 ], + uptime: 509912 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T06:11:27.136Z' +======= + timestamp: '2020-11-25T11:24:30.623Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T14:25:51.518Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 09:55:09 GMT+0330 (Iran Standard Time)', + process: { + pid: 12389, +======= + date: 'Wed Nov 25 2020 14:56:41 GMT+0330 (Iran Standard Time)', + process: { + pid: 27569, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130306048, + heapTotal: 86921216, + heapUsed: 59622752, + external: 20367925, + arrayBuffers: 18889235 + } + }, + os: { loadavg: [ 0.45, 0.45, 0.52 ], uptime: 4241 }, +======= + rss: 127885312, + heapTotal: 84557824, + heapUsed: 66049816, + external: 21257026, + arrayBuffers: 19791785 + } + }, + os: { + loadavg: [ 0.60302734375, 0.587890625, 0.56787109375 ], + uptime: 20918 +======= + date: 'Mon Nov 30 2020 09:28:57 GMT-0500 (Eastern Standard Time)', + process: { + pid: 52874, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 115924992, + heapTotal: 79691776, + heapUsed: 57002448, + external: 20626146, + arrayBuffers: 19043108 + } + }, + os: { + loadavg: [ 2.2236328125, 2.2783203125, 2.158203125 ], + uptime: 510098 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T06:25:09.991Z' +======= + timestamp: '2020-11-25T11:26:41.300Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T14:28:57.994Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 10:17:51 GMT+0330 (Iran Standard Time)', + process: { + pid: 14184, +======= + date: 'Wed Nov 25 2020 15:01:35 GMT+0330 (Iran Standard Time)', + process: { + pid: 27858, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 128921600, + heapTotal: 87445504, + heapUsed: 58531176, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.54, 0.4, 0.37 ], uptime: 5603 }, +======= + rss: 126394368, + heapTotal: 84557824, + heapUsed: 66259056, + external: 21347585, + arrayBuffers: 19882344 + } + }, + os: { + loadavg: [ 0.22802734375, 0.349609375, 0.4658203125 ], + uptime: 21212 +======= + date: 'Mon Nov 30 2020 09:30:21 GMT-0500 (Eastern Standard Time)', + process: { + pid: 52918, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 116236288, + heapTotal: 79691776, + heapUsed: 56778648, + external: 20600082, + arrayBuffers: 19017044 + } + }, + os: { + loadavg: [ 1.88037109375, 2.15869140625, 2.1240234375 ], + uptime: 510182 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T06:47:51.546Z' +======= + timestamp: '2020-11-25T11:31:35.187Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T14:30:21.179Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 10:19:12 GMT+0330 (Iran Standard Time)', + process: { + pid: 14373, +======= + date: 'Wed Nov 25 2020 15:32:28 GMT+0330 (Iran Standard Time)', + process: { + pid: 29672, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131571712, + heapTotal: 87183360, + heapUsed: 58586200, + external: 20021370, + arrayBuffers: 18542680 + } + }, + os: { loadavg: [ 1.08, 0.57, 0.43 ], uptime: 5684 }, +======= + rss: 125644800, + heapTotal: 84557824, + heapUsed: 66310784, + external: 21358999, + arrayBuffers: 19893758 + } + }, + os: { + loadavg: [ 0.30322265625, 0.29150390625, 0.27197265625 ], + uptime: 23065 +======= + date: 'Mon Nov 30 2020 09:41:53 GMT-0500 (Eastern Standard Time)', + process: { + pid: 53084, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 112685056, + heapTotal: 82567168, + heapUsed: 46184856, + external: 20955352, + arrayBuffers: 19372314 + } + }, + os: { + loadavg: [ 2.0654296875, 2.0302734375, 2.06787109375 ], + uptime: 510873 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T06:49:12.963Z' +======= + timestamp: '2020-11-25T12:02:28.839Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T14:41:53.114Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 10:21:54 GMT+0330 (Iran Standard Time)', + process: { + pid: 14596, +======= + date: 'Wed Nov 25 2020 15:33:47 GMT+0330 (Iran Standard Time)', + process: { + pid: 29814, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130908160, + heapTotal: 87969792, + heapUsed: 58546464, + external: 19989051, + arrayBuffers: 18510361 + } + }, + os: { loadavg: [ 0.63, 0.51, 0.42 ], uptime: 5846 }, +======= + rss: 126390272, + heapTotal: 84557824, + heapUsed: 65830600, + external: 21201650, + arrayBuffers: 19736409 + } + }, + os: { + loadavg: [ 1.1572265625, 0.55078125, 0.36474609375 ], + uptime: 23144 +======= + date: 'Mon Nov 30 2020 09:51:58 GMT-0500 (Eastern Standard Time)', + process: { + pid: 53238, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 114761728, + heapTotal: 79691776, + heapUsed: 57030960, + external: 20652007, + arrayBuffers: 19068969 + } + }, + os: { + loadavg: [ 1.91064453125, 1.90087890625, 1.97216796875 ], + uptime: 511478 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T06:51:54.870Z' +======= + timestamp: '2020-11-25T12:03:47.037Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T14:51:58.499Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 10:27:10 GMT+0330 (Iran Standard Time)', + process: { + pid: 15091, +======= + date: 'Wed Nov 25 2020 15:36:41 GMT+0330 (Iran Standard Time)', + process: { + pid: 30102, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131518464, + heapTotal: 87183360, + heapUsed: 58503128, + external: 20051547, + arrayBuffers: 18572857 + } + }, + os: { loadavg: [ 1.12, 0.64, 0.47 ], uptime: 6162 }, +======= + rss: 126894080, + heapTotal: 84557824, + heapUsed: 66429584, + external: 21488684, + arrayBuffers: 20023443 + } + }, + os: { + loadavg: [ 1.74755859375, 0.95556640625, 0.54638671875 ], + uptime: 23318 +======= + date: 'Mon Nov 30 2020 09:55:28 GMT-0500 (Eastern Standard Time)', + process: { + pid: 53300, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 115597312, + heapTotal: 79691776, + heapUsed: 57083896, + external: 20614678, + arrayBuffers: 19031640 + } + }, + os: { + loadavg: [ 2.86083984375, 2.0849609375, 2.00732421875 ], + uptime: 511688 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T06:57:10.839Z' +======= + timestamp: '2020-11-25T12:06:41.829Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T14:55:28.013Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 10:29:41 GMT+0330 (Iran Standard Time)', + process: { + pid: 15313, +======= + date: 'Wed Nov 25 2020 16:02:42 GMT+0330 (Iran Standard Time)', + process: { + pid: 31708, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130138112, + heapTotal: 87183360, + heapUsed: 58856816, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.86, 0.63, 0.48 ], uptime: 6312 }, +======= + rss: 125628416, + heapTotal: 84557824, + heapUsed: 66568592, + external: 21488684, + arrayBuffers: 20023443 + } + }, + os: { + loadavg: [ 0.6708984375, 0.3740234375, 0.36572265625 ], + uptime: 24879 +======= + date: 'Mon Nov 30 2020 10:16:44 GMT-0500 (Eastern Standard Time)', + process: { + pid: 53506, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 112975872, + heapTotal: 82567168, + heapUsed: 45879176, + external: 20947160, + arrayBuffers: 19364122 + } + }, + os: { + loadavg: [ 2.3134765625, 2.14990234375, 2.06201171875 ], + uptime: 512964 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T06:59:41.068Z' +======= + timestamp: '2020-11-25T12:32:42.420Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T15:16:44.350Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 10:30:55 GMT+0330 (Iran Standard Time)', + process: { + pid: 15441, +======= + date: 'Wed Nov 25 2020 16:30:46 GMT+0330 (Iran Standard Time)', + process: { + pid: 33915, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131543040, + heapTotal: 87183360, + heapUsed: 58403912, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.94, 0.71, 0.52 ], uptime: 6387 }, +======= + rss: 126640128, + heapTotal: 84557824, + heapUsed: 66819128, + external: 21560013, + arrayBuffers: 20094772 + } + }, + os: { + loadavg: [ 0.6142578125, 0.4326171875, 0.330078125 ], + uptime: 26563 +======= + date: 'Mon Nov 30 2020 10:19:42 GMT-0500 (Eastern Standard Time)', + process: { + pid: 53576, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 116342784, + heapTotal: 79691776, + heapUsed: 56811552, + external: 20626146, + arrayBuffers: 19043108 + } + }, + os: { + loadavg: [ 2.0693359375, 2.1630859375, 2.08154296875 ], + uptime: 513142 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T07:00:55.391Z' +======= + timestamp: '2020-11-25T13:00:46.216Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T15:19:42.904Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 10:32:43 GMT+0330 (Iran Standard Time)', + process: { + pid: 15682, +======= + date: 'Wed Nov 25 2020 16:34:38 GMT+0330 (Iran Standard Time)', + process: { + pid: 34282, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131223552, + heapTotal: 87707648, + heapUsed: 58581048, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.78, 0.71, 0.55 ], uptime: 6495 }, +======= + rss: 125399040, + heapTotal: 84557824, + heapUsed: 65833472, + external: 21201650, + arrayBuffers: 19736409 + } + }, + os: { + loadavg: [ 0.95458984375, 0.58935546875, 0.41064453125 ], + uptime: 26795 +======= + date: 'Mon Nov 30 2020 10:21:34 GMT-0500 (Eastern Standard Time)', + process: { + pid: 53618, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 112959488, + heapTotal: 80994304, + heapUsed: 45871192, + external: 20955352, + arrayBuffers: 19372314 + } + }, + os: { + loadavg: [ 2.53759765625, 2.2373046875, 2.11328125 ], + uptime: 513254 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T07:02:43.693Z' +======= + timestamp: '2020-11-25T13:04:38.664Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T15:21:34.643Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 12:12:51 GMT+0330 (Iran Standard Time)', + process: { + pid: 22030, +======= + date: 'Wed Nov 25 2020 16:37:20 GMT+0330 (Iran Standard Time)', + process: { + pid: 34493, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130142208, + heapTotal: 87183360, + heapUsed: 58708088, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.55, 0.49, 0.47 ], uptime: 12503 }, +======= + rss: 126296064, + heapTotal: 84557824, + heapUsed: 65945952, + external: 21339393, + arrayBuffers: 19874152 + } + }, + os: { + loadavg: [ 0.923828125, 0.66552734375, 0.46533203125 ], + uptime: 26957 +======= + date: 'Mon Nov 30 2020 10:22:41 GMT-0500 (Eastern Standard Time)', + process: { + pid: 53671, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 108408832, + heapTotal: 72609792, + heapUsed: 49153448, + external: 20771843, + arrayBuffers: 19188805 + } + }, + os: { + loadavg: [ 2.33349609375, 2.23388671875, 2.1181640625 ], + uptime: 513321 +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD +<<<<<<< HEAD + timestamp: '2020-11-28T08:42:51.519Z' +======= + timestamp: '2020-11-25T13:07:20.188Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +======= + timestamp: '2020-11-30T15:22:41.542Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, +<<<<<<< HEAD +<<<<<<< HEAD + date: 'Sat Nov 28 2020 12:18:16 GMT+0330 (Iran Standard Time)', + process: { + pid: 22528, +======= + date: 'Wed Nov 25 2020 17:50:29 GMT+0330 (Iran Standard Time)', + process: { + pid: 39007, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131182592, + heapTotal: 87445504, + heapUsed: 58543744, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.88, 0.51, 0.47 ], uptime: 12828 }, +======= + rss: 126566400, + heapTotal: 84557824, + heapUsed: 66404296, + external: 21488684, + arrayBuffers: 20023443 + } + }, + os: { + loadavg: [ 0.50146484375, 0.2998046875, 0.22314453125 ], + uptime: 31346 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T08:48:16.382Z' +======= + timestamp: '2020-11-25T14:20:29.508Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 12:21:40 GMT+0330 (Iran Standard Time)', + process: { + pid: 22881, +======= + date: 'Wed Nov 25 2020 17:53:16 GMT+0330 (Iran Standard Time)', + process: { + pid: 39266, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130777088, + heapTotal: 87183360, + heapUsed: 58739776, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 1.13, 0.67, 0.53 ], uptime: 13032 }, +======= + rss: 126545920, + heapTotal: 84557824, + heapUsed: 66410168, + external: 21488684, + arrayBuffers: 20023443 + } + }, + os: { + loadavg: [ 0.45166015625, 0.30859375, 0.2314453125 ], + uptime: 31513 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T08:51:40.543Z' +======= + timestamp: '2020-11-25T14:23:16.282Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 12:27:06 GMT+0330 (Iran Standard Time)', + process: { + pid: 23481, +======= + date: 'Wed Nov 25 2020 17:55:22 GMT+0330 (Iran Standard Time)', + process: { + pid: 39448, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 129974272, + heapTotal: 87445504, + heapUsed: 58600544, + external: 20021370, + arrayBuffers: 18542680 + } + }, + os: { loadavg: [ 1.16, 0.65, 0.54 ], uptime: 13358 }, +======= + rss: 127197184, + heapTotal: 84557824, + heapUsed: 66331728, + external: 21339393, + arrayBuffers: 19874152 + } + }, + os: { + loadavg: [ 0.57763671875, 0.32568359375, 0.23974609375 ], + uptime: 31639 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T08:57:06.388Z' +======= + timestamp: '2020-11-25T14:25:22.085Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 15:14:37 GMT+0330 (Iran Standard Time)', + process: { + pid: 35636, +======= + date: 'Wed Nov 25 2020 17:58:15 GMT+0330 (Iran Standard Time)', + process: { + pid: 39704, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 129847296, + heapTotal: 87183360, + heapUsed: 58489560, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 1.17, 1.26, 1.01 ], uptime: 23408 }, +======= + rss: 127410176, + heapTotal: 84557824, + heapUsed: 66371968, + external: 21358999, + arrayBuffers: 19893758 + } + }, + os: { + loadavg: [ 1.28369140625, 0.7021484375, 0.396484375 ], + uptime: 31812 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T11:44:37.005Z' +======= + timestamp: '2020-11-25T14:28:15.072Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 15:16:54 GMT+0330 (Iran Standard Time)', + process: { + pid: 35872, +======= + date: 'Wed Nov 25 2020 18:02:53 GMT+0330 (Iran Standard Time)', + process: { + pid: 40118, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 129306624, + heapTotal: 87183360, + heapUsed: 58692808, + external: 20021370, + arrayBuffers: 18542680 + } + }, + os: { loadavg: [ 0.83, 1.04, 0.96 ], uptime: 23546 }, +======= + rss: 125624320, + heapTotal: 84557824, + heapUsed: 66254080, + external: 21488684, + arrayBuffers: 20023443 + } + }, + os: { + loadavg: [ 0.41552734375, 0.45263671875, 0.35791015625 ], + uptime: 32090 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T11:46:54.820Z' +======= + timestamp: '2020-11-25T14:32:53.478Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 15:19:03 GMT+0330 (Iran Standard Time)', + process: { + pid: 36217, +======= + date: 'Wed Nov 25 2020 18:07:05 GMT+0330 (Iran Standard Time)', + process: { + pid: 40426, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131002368, + heapTotal: 87445504, + heapUsed: 58614160, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.9, 0.91, 0.92 ], uptime: 23675 }, +======= + rss: 127168512, + heapTotal: 84557824, + heapUsed: 66111848, + external: 21339393, + arrayBuffers: 19874152 + } + }, + os: { + loadavg: [ 0.8740234375, 0.54833984375, 0.40771484375 ], + uptime: 32342 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T11:49:03.317Z' +======= + timestamp: '2020-11-25T14:37:05.183Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 15:35:08 GMT+0330 (Iran Standard Time)', + process: { + pid: 37913, +======= + date: 'Wed Nov 25 2020 18:17:32 GMT+0330 (Iran Standard Time)', + process: { + pid: 41053, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130805760, + heapTotal: 87183360, + heapUsed: 58597464, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.63, 0.54, 0.68 ], uptime: 24639 }, +======= + rss: 127561728, + heapTotal: 84557824, + heapUsed: 66271288, + external: 21339393, + arrayBuffers: 19874152 + } + }, + os: { + loadavg: [ 0.60546875, 0.39013671875, 0.38134765625 ], + uptime: 32969 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T12:05:08.125Z' +======= + timestamp: '2020-11-25T14:47:32.109Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 15:38:36 GMT+0330 (Iran Standard Time)', + process: { + pid: 38379, +======= + date: 'Wed Nov 25 2020 18:19:41 GMT+0330 (Iran Standard Time)', + process: { + pid: 41255, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131420160, + heapTotal: 87183360, + heapUsed: 58537320, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.47, 0.47, 0.62 ], uptime: 24848 }, +======= + rss: 126144512, + heapTotal: 84819968, + heapUsed: 65582608, + external: 21074898, + arrayBuffers: 19609657 + } + }, + os: { + loadavg: [ 0.74755859375, 0.47607421875, 0.408203125 ], + uptime: 33098 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T12:08:36.236Z' +======= + timestamp: '2020-11-25T14:49:41.396Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 15:39:58 GMT+0330 (Iran Standard Time)', + process: { + pid: 38560, +======= + date: 'Wed Nov 25 2020 18:23:05 GMT+0330 (Iran Standard Time)', + process: { + pid: 41555, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 132784128, + heapTotal: 86921216, + heapUsed: 58741032, + external: 20069509, + arrayBuffers: 18590819 + } + }, + os: { loadavg: [ 0.74, 0.53, 0.63 ], uptime: 24930 }, +======= + rss: 126328832, + heapTotal: 84557824, + heapUsed: 66248672, + external: 21358999, + arrayBuffers: 19893758 + } + }, + os: { + loadavg: [ 0.6884765625, 0.54931640625, 0.44921875 ], + uptime: 33302 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T12:09:58.433Z' +======= + timestamp: '2020-11-25T14:53:05.196Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 15:41:28 GMT+0330 (Iran Standard Time)', + process: { + pid: 38881, +======= + date: 'Wed Nov 25 2020 18:25:00 GMT+0330 (Iran Standard Time)', + process: { + pid: 41726, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131452928, + heapTotal: 87707648, + heapUsed: 58616072, + external: 20021370, + arrayBuffers: 18542680 + } + }, + os: { loadavg: [ 0.84, 0.64, 0.66 ], uptime: 25020 }, +======= + rss: 126509056, + heapTotal: 84557824, + heapUsed: 65966272, + external: 21248834, + arrayBuffers: 19783593 + } + }, + os: { + loadavg: [ 0.876953125, 0.65869140625, 0.49951171875 ], + uptime: 33417 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T12:11:28.324Z' +======= + timestamp: '2020-11-25T14:55:00.057Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 15:42:28 GMT+0330 (Iran Standard Time)', + process: { + pid: 39055, +======= + date: 'Wed Nov 25 2020 19:01:31 GMT+0330 (Iran Standard Time)', + process: { + pid: 44918, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 130564096, + heapTotal: 87183360, + heapUsed: 58789984, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.98, 0.69, 0.67 ], uptime: 25080 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false +======= + rss: 126447616, + heapTotal: 84557824, + heapUsed: 66218504, + external: 21339393, + arrayBuffers: 19874152 +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + } + ], + timestamp: '2020-11-28T12:12:28.175Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, +<<<<<<< HEAD + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:43:13 GMT+0330 (Iran Standard Time)', + process: { + pid: 39214, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 130772992, + heapTotal: 87445504, + heapUsed: 58786224, + external: 20021370, + arrayBuffers: 18542680 + } +======= + os: { + loadavg: [ 0.50244140625, 0.3291015625, 0.345703125 ], + uptime: 35608 +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + }, + os: { loadavg: [ 1.21, 0.79, 0.71 ], uptime: 25125 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T12:13:13.861Z' +======= + timestamp: '2020-11-25T15:31:31.484Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sat Nov 28 2020 15:44:11 GMT+0330 (Iran Standard Time)', + process: { + pid: 39353, +======= + date: 'Wed Nov 25 2020 19:10:55 GMT+0330 (Iran Standard Time)', + process: { + pid: 45678, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { +<<<<<<< HEAD + rss: 131444736, + heapTotal: 87445504, + heapUsed: 58755032, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.77, 0.72, 0.69 ], uptime: 25183 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false +======= + rss: 127008768, + heapTotal: 84557824, + heapUsed: 66240376, + external: 21347585, + arrayBuffers: 19882344 +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + } + ], + timestamp: '2020-11-28T12:14:11.348Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, +<<<<<<< HEAD + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:46:59 GMT+0330 (Iran Standard Time)', + process: { + pid: 39684, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 131543040, + heapTotal: 87445504, + heapUsed: 58597440, + external: 20021370, + arrayBuffers: 18542680 + } +======= + os: { + loadavg: [ 0.833984375, 0.4951171875, 0.3935546875 ], + uptime: 36172 +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + }, + os: { loadavg: [ 0.98, 0.68, 0.67 ], uptime: 25351 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-28T12:16:59.678Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:56:08 GMT+0330 (Iran Standard Time)', + process: { + pid: 40631, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 131452928, + heapTotal: 87183360, + heapUsed: 58912744, + external: 20038476, + arrayBuffers: 18559786 + } + }, + os: { loadavg: [ 0.85, 0.53, 0.57 ], uptime: 25900 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T12:26:08.247Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 16:05:26 GMT+0330 (Iran Standard Time)', + process: { + pid: 41366, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + version: 'v12.19.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.19.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 129904640, + heapTotal: 87445504, + heapUsed: 58554784, + external: 20051547, + arrayBuffers: 18572857 + } + }, + os: { loadavg: [ 0.9, 0.44, 0.46 ], uptime: 26457 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T12:35:26.080Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sun Nov 29 2020 11:34:37 GMT+0330 (Iran Standard Time)', + process: { + pid: 5924, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 131756032, + heapTotal: 87445504, + heapUsed: 58644976, + external: 20044470, + arrayBuffers: 18560063 + } + }, + os: { loadavg: [ 1.06, 1.69, 1.18 ], uptime: 814 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-29T08:04:37.712Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sun Nov 29 2020 11:40:20 GMT+0330 (Iran Standard Time)', + process: { + pid: 7681, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 130756608, + heapTotal: 87445504, + heapUsed: 58646520, + external: 20019172, + arrayBuffers: 18534765 + } + }, + os: { loadavg: [ 1.2, 1.28, 1.15 ], uptime: 1156 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-29T08:10:20.373Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sun Nov 29 2020 11:59:58 GMT+0330 (Iran Standard Time)', + process: { + pid: 10484, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 131510272, + heapTotal: 87183360, + heapUsed: 58604560, + external: 20075503, + arrayBuffers: 18591096 + } + }, + os: { loadavg: [ 0.38, 0.69, 0.83 ], uptime: 2334 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-29T08:29:58.431Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sun Nov 29 2020 13:55:02 GMT+0330 (Iran Standard Time)', + process: { + pid: 17202, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 130166784, + heapTotal: 87441408, + heapUsed: 58480384, + external: 20019172, + arrayBuffers: 18534765 + } + }, + os: { loadavg: [ 0.75, 0.73, 0.43 ], uptime: 9239 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-29T10:25:02.832Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sun Nov 29 2020 13:58:12 GMT+0330 (Iran Standard Time)', + process: { + pid: 17544, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 130781184, + heapTotal: 87703552, + heapUsed: 58362880, + external: 20019172, + arrayBuffers: 18534765 + } + }, + os: { loadavg: [ 0.56, 0.61, 0.44 ], uptime: 9428 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-29T10:28:12.069Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sun Nov 29 2020 13:59:28 GMT+0330 (Iran Standard Time)', + process: { + pid: 17739, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 131239936, + heapTotal: 86917120, + heapUsed: 58320600, + external: 20044470, + arrayBuffers: 18560063 + } + }, + os: { loadavg: [ 0.74, 0.64, 0.47 ], uptime: 9505 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-29T10:29:28.816Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sun Nov 29 2020 14:00:51 GMT+0330 (Iran Standard Time)', + process: { + pid: 17915, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 132358144, + heapTotal: 87441408, + heapUsed: 58576824, + external: 20014537, + arrayBuffers: 18530130 + } + }, + os: { loadavg: [ 0.76, 0.65, 0.48 ], uptime: 9587 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-29T10:30:51.225Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sun Nov 29 2020 14:02:06 GMT+0330 (Iran Standard Time)', + process: { + pid: 18064, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 131944448, + heapTotal: 87441408, + heapUsed: 58480448, + external: 20019172, + arrayBuffers: 18534765 + } + }, + os: { loadavg: [ 0.8, 0.65, 0.49 ], uptime: 9663 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-29T10:32:06.939Z' +======= + timestamp: '2020-11-25T15:40:55.181Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sun Nov 29 2020 14:13:50 GMT+0330 (Iran Standard Time)', + process: { + pid: 18936, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 132001792, + heapTotal: 87441408, + heapUsed: 58261680, + external: 20027364, + arrayBuffers: 18542957 + } + }, + os: { loadavg: [ 0.45, 0.63, 0.6 ], uptime: 10367 }, +======= + date: 'Wed Nov 25 2020 19:12:55 GMT+0330 (Iran Standard Time)', + process: { + pid: 45823, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126332928, + heapTotal: 84557824, + heapUsed: 66179848, + external: 21339393, + arrayBuffers: 19874152 + } + }, + os: { + loadavg: [ 0.53271484375, 0.5146484375, 0.41455078125 ], + uptime: 36292 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-29T10:43:50.890Z' +======= + timestamp: '2020-11-25T15:42:55.292Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sun Nov 29 2020 14:15:17 GMT+0330 (Iran Standard Time)', + process: { + pid: 19110, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 130854912, + heapTotal: 87179264, + heapUsed: 58544256, + external: 20027364, + arrayBuffers: 18542957 + } + }, + os: { loadavg: [ 0.76, 0.67, 0.61 ], uptime: 10453 }, +======= + date: 'Wed Nov 25 2020 19:13:47 GMT+0330 (Iran Standard Time)', + process: { + pid: 45942, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126357504, + heapTotal: 84557824, + heapUsed: 65919512, + external: 21257026, + arrayBuffers: 19791785 + } + }, + os: { + loadavg: [ 0.9892578125, 0.64306640625, 0.4658203125 ], + uptime: 36344 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-29T10:45:17.237Z' +======= + timestamp: '2020-11-25T15:43:47.774Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sun Nov 29 2020 14:17:22 GMT+0330 (Iran Standard Time)', + process: { + pid: 19306, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 132419584, + heapTotal: 87703552, + heapUsed: 58444864, + external: 20044470, + arrayBuffers: 18560063 + } + }, + os: { loadavg: [ 0.99, 0.66, 0.61 ], uptime: 10578 }, +======= + date: 'Wed Nov 25 2020 19:16:00 GMT+0330 (Iran Standard Time)', + process: { + pid: 46164, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126246912, + heapTotal: 84557824, + heapUsed: 66552632, + external: 21488684, + arrayBuffers: 20023443 + } + }, + os: { loadavg: [ 0.705078125, 0.6279296875, 0.48046875 ], uptime: 36477 }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-29T10:47:22.528Z' +======= + timestamp: '2020-11-25T15:46:00.544Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sun Nov 29 2020 14:19:21 GMT+0330 (Iran Standard Time)', + process: { + pid: 19513, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 129880064, + heapTotal: 87179264, + heapUsed: 58632504, + external: 20027364, + arrayBuffers: 18542957 + } + }, + os: { loadavg: [ 1.6, 0.89, 0.69 ], uptime: 10698 }, +======= + date: 'Sat Nov 28 2020 10:16:56 GMT+0330 (Iran Standard Time)', + process: { + pid: 11207, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125071360, + heapTotal: 84299776, + heapUsed: 57700856, + external: 20033195, + arrayBuffers: 18567954 + } + }, + os: { + loadavg: [ 2.46533203125, 1.4345703125, 1.216796875 ], + uptime: 3929 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-29T10:49:21.725Z' +======= + timestamp: '2020-11-28T06:46:56.842Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Sun Nov 29 2020 14:42:37 GMT+0330 (Iran Standard Time)', + process: { + pid: 21698, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 129957888, + heapTotal: 87441408, + heapUsed: 58071248, + external: 20027364, + arrayBuffers: 18542957 + } + }, + os: { loadavg: [ 0.99, 0.67, 0.64 ], uptime: 12093 }, +======= + date: 'Sat Nov 28 2020 10:18:41 GMT+0330 (Iran Standard Time)', + process: { + pid: 11411, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126234624, + heapTotal: 84557824, + heapUsed: 66491416, + external: 21488563, + arrayBuffers: 20023322 + } + }, + os: { + loadavg: [ 1.15087890625, 1.22607421875, 1.16064453125 ], + uptime: 4033 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', +<<<<<<< HEAD + line: 470, +======= + line: 469, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-29T11:12:37.180Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sun Nov 29 2020 15:13:46 GMT+0330 (Iran Standard Time)', + process: { + pid: 24416, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 131538944, + heapTotal: 87179264, + heapUsed: 58433824, + external: 20027364, + arrayBuffers: 18542957 + } + }, + os: { loadavg: [ 1.45, 0.87, 0.66 ], uptime: 13962 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-29T11:43:46.180Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sun Nov 29 2020 18:01:47 GMT+0330 (Iran Standard Time)', + process: { + pid: 40395, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 127504384, + heapTotal: 83783680, + heapUsed: 64101736, + external: 20865044, + arrayBuffers: 19380637 + } + }, + os: { loadavg: [ 0.74, 1.59, 1.53 ], uptime: 24043 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-29T14:31:47.027Z' +======= + timestamp: '2020-11-28T06:48:41.110Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Mon Nov 30 2020 09:31:48 GMT+0330 (Iran Standard Time)', + process: { + pid: 7136, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 126681088, + heapTotal: 90857472, + heapUsed: 54075280, + external: 19993757, + arrayBuffers: 18510638 + } + }, + os: { loadavg: [ 0.83, 0.48, 0.42 ], uptime: 2743 }, +======= + date: 'Sat Nov 28 2020 10:20:20 GMT+0330 (Iran Standard Time)', + process: { + pid: 11578, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125898752, + heapTotal: 84557824, + heapUsed: 65848568, + external: 21201529, + arrayBuffers: 19736288 + } + }, + os: { + loadavg: [ 1.16748046875, 1.1806640625, 1.14892578125 ], + uptime: 4133 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T06:01:48.127Z' +======= + timestamp: '2020-11-28T06:50:20.947Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Mon Nov 30 2020 09:48:18 GMT+0330 (Iran Standard Time)', + process: { + pid: 8898, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 131334144, + heapTotal: 87453696, + heapUsed: 58195456, + external: 19995045, + arrayBuffers: 18510638 + } + }, + os: { loadavg: [ 1.04, 0.87, 0.7 ], uptime: 3733 }, +======= + date: 'Sat Nov 28 2020 10:21:02 GMT+0330 (Iran Standard Time)', + process: { + pid: 11659, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126971904, + heapTotal: 84557824, + heapUsed: 66033152, + external: 21339272, + arrayBuffers: 19874031 + } + }, + os: { loadavg: [ 1.23193359375, 1.1875, 1.15234375 ], uptime: 4175 }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T06:18:18.198Z' +======= + timestamp: '2020-11-28T06:51:02.898Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Mon Nov 30 2020 09:53:59 GMT+0330 (Iran Standard Time)', + process: { + pid: 9647, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 129347584, + heapTotal: 87453696, + heapUsed: 58201984, + external: 20010121, + arrayBuffers: 18525714 + } + }, + os: { loadavg: [ 0.91, 0.68, 0.65 ], uptime: 4075 }, +======= + date: 'Sat Nov 28 2020 10:29:22 GMT+0330 (Iran Standard Time)', + process: { + pid: 12277, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125313024, + heapTotal: 84557824, + heapUsed: 66442056, + external: 21488563, + arrayBuffers: 20023322 + } + }, + os: { + loadavg: [ 0.7529296875, 0.7470703125, 0.93994140625 ], + uptime: 4674 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T06:23:59.536Z' +======= + timestamp: '2020-11-28T06:59:22.157Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Mon Nov 30 2020 09:56:33 GMT+0330 (Iran Standard Time)', + process: { + pid: 9928, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 128655360, + heapTotal: 87453696, + heapUsed: 58422000, + external: 20014537, + arrayBuffers: 18530130 + } + }, + os: { loadavg: [ 0.78, 0.63, 0.63 ], uptime: 4229 }, +======= + date: 'Sat Nov 28 2020 10:32:24 GMT+0330 (Iran Standard Time)', + process: { + pid: 12522, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127709184, + heapTotal: 84557824, + heapUsed: 66010456, + external: 21289803, + arrayBuffers: 19824562 + } + }, + os: { + loadavg: [ 0.76318359375, 0.7822265625, 0.916015625 ], + uptime: 4856 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T06:26:33.898Z' +======= + timestamp: '2020-11-28T07:02:24.448Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Mon Nov 30 2020 09:58:47 GMT+0330 (Iran Standard Time)', + process: { + pid: 10100, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 130682880, + heapTotal: 87453696, + heapUsed: 58248536, + external: 20027364, + arrayBuffers: 18542957 + } + }, + os: { loadavg: [ 0.64, 0.6, 0.62 ], uptime: 4363 }, +======= + date: 'Sat Nov 28 2020 10:49:42 GMT+0330 (Iran Standard Time)', + process: { + pid: 13704, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127406080, + heapTotal: 84557824, + heapUsed: 66283792, + external: 21488563, + arrayBuffers: 20023322 + } + }, + os: { + loadavg: [ 0.7099609375, 0.54833984375, 0.6884765625 ], + uptime: 5894 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T06:28:47.533Z' +======= + timestamp: '2020-11-28T07:19:42.036Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Mon Nov 30 2020 10:02:02 GMT+0330 (Iran Standard Time)', + process: { + pid: 10344, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 130351104, + heapTotal: 87191552, + heapUsed: 58306736, + external: 19995045, + arrayBuffers: 18510638 + } + }, + os: { loadavg: [ 0.64, 0.62, 0.63 ], uptime: 4558 }, +======= + date: 'Sat Nov 28 2020 10:50:42 GMT+0330 (Iran Standard Time)', + process: { + pid: 13829, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125632512, + heapTotal: 84557824, + heapUsed: 66012184, + external: 21275754, + arrayBuffers: 19810513 + } + }, + os: { + loadavg: [ 0.79150390625, 0.57568359375, 0.68701171875 ], + uptime: 5954 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T06:32:02.759Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) +======= + timestamp: '2020-11-28T07:20:42.038Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + +<<<<<<< HEAD + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 10:12:35 GMT+0330 (Iran Standard Time)', + process: { + pid: 11039, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 131035136, + heapTotal: 86929408, + heapUsed: 58339792, + external: 20044470, + arrayBuffers: 18560063 + } + }, + os: { loadavg: [ 0.57, 0.54, 0.58 ], uptime: 5190 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T06:42:35.266Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 10:14:25 GMT+0330 (Iran Standard Time)', + process: { + pid: 11260, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 125632512, + heapTotal: 83783680, + heapUsed: 64163368, + external: 20865044, + arrayBuffers: 19380637 + } + }, + os: { loadavg: [ 0.77, 0.61, 0.6 ], uptime: 5301 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, +======= + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 10:52:36 GMT+0330 (Iran Standard Time)', + process: { + pid: 14078, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127057920, + heapTotal: 84557824, + heapUsed: 66160632, + external: 21339272, + arrayBuffers: 19874031 + } + }, + os: { loadavg: [ 1.3193359375, 0.712890625, 0.71484375 ], uptime: 6069 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', +<<<<<<< HEAD + line: 470, +======= + line: 469, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T06:44:25.443Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) +======= + timestamp: '2020-11-28T07:22:36.584Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + +<<<<<<< HEAD + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 10:53:13 GMT+0330 (Iran Standard Time)', + process: { + pid: 14576, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 127885312, + heapTotal: 83783680, + heapUsed: 63708792, + external: 20865044, + arrayBuffers: 19380637 + } + }, + os: { loadavg: [ 0.67, 0.59, 0.49 ], uptime: 7628 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T07:23:13.090Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 15:30:12 GMT+0330 (Iran Standard Time)', + process: { + pid: 32166, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 130088960, + heapTotal: 86396928, + heapUsed: 57615912, + external: 20059059, + arrayBuffers: 18574652 + } + }, + os: { loadavg: [ 0.98, 0.76, 0.65 ], uptime: 24248 }, +======= + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 10:55:47 GMT+0330 (Iran Standard Time)', + process: { + pid: 14323, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126492672, + heapTotal: 84557824, + heapUsed: 66479760, + external: 21358878, + arrayBuffers: 19893637 + } + }, + os: { + loadavg: [ 0.8701171875, 0.73583984375, 0.72412109375 ], + uptime: 6259 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', +<<<<<<< HEAD + line: 268, +======= + line: 267, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', +<<<<<<< HEAD + line: 470, +======= + line: 469, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T12:00:12.776Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) +======= + timestamp: '2020-11-28T07:25:47.214Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + +<<<<<<< HEAD + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 15:35:23 GMT+0330 (Iran Standard Time)', + process: { + pid: 32638, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 131997696, + heapTotal: 86921216, + heapUsed: 56333192, + external: 20025003, + arrayBuffers: 18541884 + } + }, + os: { loadavg: [ 0.86, 0.82, 0.7 ], uptime: 24558 }, +======= + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 11:11:49 GMT+0330 (Iran Standard Time)', + process: { + pid: 15263, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126713856, + heapTotal: 84557824, + heapUsed: 65872888, + external: 21248713, + arrayBuffers: 19783472 + } + }, + os: { + loadavg: [ 0.2685546875, 0.31396484375, 0.4482421875 ], + uptime: 7221 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', +<<<<<<< HEAD + line: 268, +======= + line: 267, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', +<<<<<<< HEAD + line: 470, +======= + line: 469, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, +<<<<<<< HEAD + native: false + } + ], + timestamp: '2020-11-30T12:05:23.284Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) +======= + native: false + } + ], + timestamp: '2020-11-28T07:41:49.309Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 11:38:31 GMT+0330 (Iran Standard Time)', + process: { + pid: 17022, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125321216, + heapTotal: 84557824, + heapUsed: 65719368, + external: 21202497, + arrayBuffers: 19737256 + } + }, + os: { loadavg: [ 0.8505859375, 0.71533203125, 0.5546875 ], uptime: 8824 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T08:08:31.908Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 11:39:10 GMT+0330 (Iran Standard Time)', + process: { + pid: 17066, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127176704, + heapTotal: 84557824, + heapUsed: 66324904, + external: 21351654, + arrayBuffers: 19886413 + } + }, + os: { + loadavg: [ 0.9189453125, 0.7509765625, 0.57275390625 ], + uptime: 8863 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T08:09:10.882Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 12:01:19 GMT+0330 (Iran Standard Time)', + process: { + pid: 18555, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127549440, + heapTotal: 84557824, + heapUsed: 66417864, + external: 21360169, + arrayBuffers: 19894928 + } + }, + os: { + loadavg: [ 0.7998046875, 0.54150390625, 0.5390625 ], + uptime: 10191 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T08:31:19.439Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 12:12:08 GMT+0330 (Iran Standard Time)', + process: { + pid: 19289, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126038016, + heapTotal: 84557824, + heapUsed: 66017464, + external: 21340560, + arrayBuffers: 19875319 + } + }, + os: { + loadavg: [ 0.4833984375, 0.4462890625, 0.49755859375 ], + uptime: 10840 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T08:42:08.349Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 12:17:39 GMT+0330 (Iran Standard Time)', + process: { + pid: 19758, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127643648, + heapTotal: 84557824, + heapUsed: 66485200, + external: 21490152, + arrayBuffers: 20024911 + } + }, + os: { + loadavg: [ 0.8681640625, 0.64404296875, 0.5595703125 ], + uptime: 11172 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T08:47:39.630Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 12:26:30 GMT+0330 (Iran Standard Time)', + process: { + pid: 20302, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127152128, + heapTotal: 84557824, + heapUsed: 65821704, + external: 21203538, + arrayBuffers: 19738297 + } + }, + os: { loadavg: [ 0.83740234375, 0.60986328125, 0.53125 ], uptime: 11703 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T08:56:30.747Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 12:29:44 GMT+0330 (Iran Standard Time)', + process: { + pid: 20593, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 128102400, + heapTotal: 84557824, + heapUsed: 66170736, + external: 21341279, + arrayBuffers: 19876038 + } + }, + os: { loadavg: [ 0.4375, 0.50732421875, 0.5078125 ], uptime: 11896 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T08:59:44.517Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 12:32:24 GMT+0330 (Iran Standard Time)', + process: { + pid: 20796, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126513152, + heapTotal: 84557824, + heapUsed: 66325752, + external: 21360952, + arrayBuffers: 19895711 + } + }, + os: { + loadavg: [ 0.6494140625, 0.5283203125, 0.5107421875 ], + uptime: 12056 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T09:02:24.022Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 12:38:20 GMT+0330 (Iran Standard Time)', + process: { + pid: 21190, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127086592, + heapTotal: 84557824, + heapUsed: 66763504, + external: 21554844, + arrayBuffers: 20089603 + } + }, + os: { + loadavg: [ 1.05615234375, 0.724609375, 0.5791015625 ], + uptime: 12412 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T09:08:20.093Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 14:33:56 GMT+0330 (Iran Standard Time)', + process: { + pid: 27688, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126783488, + heapTotal: 84557824, + heapUsed: 66561768, + external: 21490981, + arrayBuffers: 20025740 + } + }, + os: { + loadavg: [ 0.63720703125, 0.34423828125, 0.19287109375 ], + uptime: 19349 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:03:56.741Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 14:43:51 GMT+0330 (Iran Standard Time)', + process: { + pid: 28523, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125812736, + heapTotal: 84557824, + heapUsed: 66131600, + external: 21349949, + arrayBuffers: 19884708 + } + }, + os: { + loadavg: [ 0.60205078125, 0.548828125, 0.373046875 ], + uptime: 19944 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:13:51.972Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 14:45:29 GMT+0330 (Iran Standard Time)', + process: { + pid: 28710, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126525440, + heapTotal: 84557824, + heapUsed: 65786984, + external: 21259412, + arrayBuffers: 19794171 + } + }, + os: { + loadavg: [ 0.81103515625, 0.61328125, 0.41064453125 ], + uptime: 20042 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:15:29.985Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 14:47:20 GMT+0330 (Iran Standard Time)', + process: { + pid: 28905, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127827968, + heapTotal: 84557824, + heapUsed: 66557496, + external: 21554912, + arrayBuffers: 20089671 + } + }, + os: { + loadavg: [ 0.73681640625, 0.60986328125, 0.4306640625 ], + uptime: 20153 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:17:20.694Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 14:49:15 GMT+0330 (Iran Standard Time)', + process: { + pid: 29075, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126427136, + heapTotal: 84557824, + heapUsed: 66511016, + external: 21353165, + arrayBuffers: 19887924 + } + }, + os: { + loadavg: [ 0.669921875, 0.58837890625, 0.4423828125 ], + uptime: 20267 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:19:15.010Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 14:50:40 GMT+0330 (Iran Standard Time)', + process: { + pid: 29219, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126955520, + heapTotal: 84557824, + heapUsed: 66178832, + external: 21341773, + arrayBuffers: 19876532 + } + }, + os: { loadavg: [ 0.9345703125, 0.6796875, 0.486328125 ], uptime: 20352 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:20:40.453Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 14:55:18 GMT+0330 (Iran Standard Time)', + process: { + pid: 29612, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127471616, + heapTotal: 84557824, + heapUsed: 66228680, + external: 21341766, + arrayBuffers: 19876525 + } + }, + os: { + loadavg: [ 0.841796875, 0.70068359375, 0.54052734375 ], + uptime: 20631 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:25:18.873Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 14:57:25 GMT+0330 (Iran Standard Time)', + process: { + pid: 29798, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126988288, + heapTotal: 84557824, + heapUsed: 65945848, + external: 21278252, + arrayBuffers: 19813011 + } + }, + os: { + loadavg: [ 0.85595703125, 0.7060546875, 0.56298828125 ], + uptime: 20757 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:27:25.310Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:06:29 GMT+0330 (Iran Standard Time)', + process: { + pid: 30447, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126021632, + heapTotal: 84557824, + heapUsed: 66295600, + external: 21361384, + arrayBuffers: 19896143 + } + }, + os: { + loadavg: [ 0.66796875, 0.45751953125, 0.47900390625 ], + uptime: 21302 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:36:29.677Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:07:39 GMT+0330 (Iran Standard Time)', + process: { + pid: 30581, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125612032, + heapTotal: 84557824, + heapUsed: 66573104, + external: 21491069, + arrayBuffers: 20025828 + } + }, + os: { + loadavg: [ 0.9423828125, 0.60009765625, 0.52978515625 ], + uptime: 21371 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:37:39.446Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:08:23 GMT+0330 (Iran Standard Time)', + process: { + pid: 30696, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126844928, + heapTotal: 84557824, + heapUsed: 66233832, + external: 21482877, + arrayBuffers: 20017636 + } + }, + os: { + loadavg: [ 0.9326171875, 0.62841796875, 0.54296875 ], + uptime: 21415 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:38:23.441Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:09:42 GMT+0330 (Iran Standard Time)', + process: { + pid: 30846, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125665280, + heapTotal: 84557824, + heapUsed: 66536912, + external: 21491069, + arrayBuffers: 20025828 + } + }, + os: { loadavg: [ 0.65625, 0.6005859375, 0.5419921875 ], uptime: 21495 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:39:42.607Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:11:48 GMT+0330 (Iran Standard Time)', + process: { + pid: 31037, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 128294912, + heapTotal: 84557824, + heapUsed: 65924752, + external: 21278265, + arrayBuffers: 19813024 + } + }, + os: { + loadavg: [ 2.0361328125, 0.98779296875, 0.68115234375 ], + uptime: 21620 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:41:48.100Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:20:57 GMT+0330 (Iran Standard Time)', + process: { + pid: 31674, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126611456, + heapTotal: 84557824, + heapUsed: 66445720, + external: 21361389, + arrayBuffers: 19896148 + } + }, + os: { + loadavg: [ 0.78857421875, 0.77197265625, 0.67626953125 ], + uptime: 22169 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:50:57.011Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:23:20 GMT+0330 (Iran Standard Time)', + process: { + pid: 31931, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127143936, + heapTotal: 84557824, + heapUsed: 65534160, + external: 21148857, + arrayBuffers: 19683616 + } + }, + os: { + loadavg: [ 0.8017578125, 0.88818359375, 0.7412109375 ], + uptime: 22312 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:53:20.018Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:28:54 GMT+0330 (Iran Standard Time)', + process: { + pid: 32369, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127696896, + heapTotal: 84557824, + heapUsed: 66602440, + external: 21554991, + arrayBuffers: 20089750 + } + }, + os: { + loadavg: [ 0.53076171875, 0.65234375, 0.67919921875 ], + uptime: 22647 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T11:58:54.884Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:30:57 GMT+0330 (Iran Standard Time)', + process: { + pid: 32592, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126046208, + heapTotal: 84557824, + heapUsed: 65601224, + external: 21157049, + arrayBuffers: 19691808 + } + }, + os: { + loadavg: [ 0.87060546875, 0.767578125, 0.720703125 ], + uptime: 22770 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T12:00:57.628Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:38:42 GMT+0330 (Iran Standard Time)', + process: { + pid: 33195, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 128356352, + heapTotal: 84557824, + heapUsed: 66533288, + external: 21483382, + arrayBuffers: 20018141 + } + }, + os: { + loadavg: [ 1.0205078125, 0.9384765625, 0.83203125 ], + uptime: 23235 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T12:08:42.864Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 15:54:27 GMT+0330 (Iran Standard Time)', + process: { + pid: 34417, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125804544, + heapTotal: 84557824, + heapUsed: 65762096, + external: 21259918, + arrayBuffers: 19794677 + } + }, + os: { loadavg: [ 0.654296875, 0.525390625, 0.658203125 ], uptime: 24179 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T12:24:27.334Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 16:05:10 GMT+0330 (Iran Standard Time)', + process: { + pid: 35248, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126447616, + heapTotal: 84557824, + heapUsed: 66110640, + external: 21278917, + arrayBuffers: 19813676 + } + }, + os: { + loadavg: [ 0.75634765625, 0.56982421875, 0.6083984375 ], + uptime: 24823 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T12:35:10.781Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 16:52:03 GMT+0330 (Iran Standard Time)', + process: { + pid: 38639, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125964288, + heapTotal: 84557824, + heapUsed: 66104552, + external: 21260145, + arrayBuffers: 19794904 + } + }, + os: { + loadavg: [ 1.55029296875, 0.95263671875, 0.5908203125 ], + uptime: 27636 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T13:22:03.573Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 16:55:41 GMT+0330 (Iran Standard Time)', + process: { + pid: 38974, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127721472, + heapTotal: 85082112, + heapUsed: 66318040, + external: 21334400, + arrayBuffers: 19869159 + } + }, + os: { + loadavg: [ 0.88623046875, 0.9482421875, 0.67138671875 ], + uptime: 27854 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T13:25:41.821Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 17:01:21 GMT+0330 (Iran Standard Time)', + process: { + pid: 39351, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125919232, + heapTotal: 84557824, + heapUsed: 66153560, + external: 21260357, + arrayBuffers: 19795116 + } + }, + os: { + loadavg: [ 1.21435546875, 0.97998046875, 0.76171875 ], + uptime: 28193 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T13:31:21.047Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 17:05:21 GMT+0330 (Iran Standard Time)', + process: { + pid: 39656, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127078400, + heapTotal: 84557824, + heapUsed: 66506240, + external: 21492013, + arrayBuffers: 20026772 + } + }, + os: { + loadavg: [ 0.6904296875, 0.72607421875, 0.69970703125 ], + uptime: 28433 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T13:35:21.294Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 17:08:06 GMT+0330 (Iran Standard Time)', + process: { + pid: 39923, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126627840, + heapTotal: 84819968, + heapUsed: 65576504, + external: 21078301, + arrayBuffers: 19613060 + } + }, + os: { + loadavg: [ 1.220703125, 0.92822265625, 0.77978515625 ], + uptime: 28598 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T13:38:06.352Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 17:11:01 GMT+0330 (Iran Standard Time)', + process: { + pid: 40178, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 128888832, + heapTotal: 84557824, + heapUsed: 66112984, + external: 21342791, + arrayBuffers: 19877550 + } + }, + os: { + loadavg: [ 0.998046875, 0.9052734375, 0.7958984375 ], + uptime: 28774 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T13:41:01.911Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 17:27:04 GMT+0330 (Iran Standard Time)', + process: { + pid: 41380, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126263296, + heapTotal: 84557824, + heapUsed: 66569992, + external: 21491448, + arrayBuffers: 20026207 + } + }, + os: { + loadavg: [ 1.1513671875, 0.77880859375, 0.67919921875 ], + uptime: 29736 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T13:57:04.464Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 17:27:51 GMT+0330 (Iran Standard Time)', + process: { + pid: 41473, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126853120, + heapTotal: 84557824, + heapUsed: 66523624, + external: 21361763, + arrayBuffers: 19896522 + } + }, + os: { + loadavg: [ 0.97119140625, 0.77978515625, 0.68408203125 ], + uptime: 29783 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T13:57:51.306Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 17:33:50 GMT+0330 (Iran Standard Time)', + process: { + pid: 41944, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125943808, + heapTotal: 84557824, + heapUsed: 66509368, + external: 21361763, + arrayBuffers: 19896522 + } + }, + os: { + loadavg: [ 1.27685546875, 0.984375, 0.79541015625 ], + uptime: 30142 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T14:03:50.392Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 17:37:19 GMT+0330 (Iran Standard Time)', + process: { + pid: 42258, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126234624, + heapTotal: 84557824, + heapUsed: 66228352, + external: 21342157, + arrayBuffers: 19876916 + } + }, + os: { + loadavg: [ 1.22412109375, 0.99072265625, 0.8291015625 ], + uptime: 30352 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T14:07:19.814Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 17:48:08 GMT+0330 (Iran Standard Time)', + process: { + pid: 43131, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125939712, + heapTotal: 84557824, + heapUsed: 65855080, + external: 21259790, + arrayBuffers: 19794549 + } + }, + os: { + loadavg: [ 0.70166015625, 0.478515625, 0.5908203125 ], + uptime: 31000 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T14:18:08.125Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Sat Nov 28 2020 17:49:27 GMT+0330 (Iran Standard Time)', + process: { + pid: 43255, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126849024, + heapTotal: 84557824, + heapUsed: 65976584, + external: 21342157, + arrayBuffers: 19876916 + } + }, + os: { + loadavg: [ 1.11279296875, 0.658203125, 0.64697265625 ], + uptime: 31080 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-28T14:19:27.599Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 09:35:14 GMT+0330 (Iran Standard Time)', + process: { + pid: 5632, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 125849600, + heapTotal: 83513344, + heapUsed: 61209928, + external: 20493914, + arrayBuffers: 19028673 + } + }, + os: { loadavg: [ 2.6005859375, 1.708984375, 1.08203125 ], uptime: 1214 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T06:05:14.558Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 10:55:20 GMT+0330 (Iran Standard Time)', + process: { + pid: 13166, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126668800, + heapTotal: 87703552, + heapUsed: 61546992, + external: 21360560, + arrayBuffers: 19896607 + } + }, + os: { + loadavg: [ 0.9775390625, 0.73779296875, 0.68017578125 ], + uptime: 6020 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T07:25:20.483Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 11:01:37 GMT+0330 (Iran Standard Time)', + process: { + pid: 13657, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126402560, + heapTotal: 84557824, + heapUsed: 66324104, + external: 21361848, + arrayBuffers: 19896607 + } + }, + os: { loadavg: [ 0.908203125, 0.748046875, 0.6923828125 ], uptime: 6397 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T07:31:37.246Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 11:06:12 GMT+0330 (Iran Standard Time)', + process: { + pid: 14011, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126910464, + heapTotal: 84557824, + heapUsed: 66239264, + external: 21491533, + arrayBuffers: 20026292 + } + }, + os: { loadavg: [ 0.4453125, 0.5537109375, 0.61865234375 ], uptime: 6672 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T07:36:12.526Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 11:08:19 GMT+0330 (Iran Standard Time)', + process: { + pid: 14180, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127574016, + heapTotal: 84557824, + heapUsed: 66165680, + external: 21259875, + arrayBuffers: 19794634 + } + }, + os: { + loadavg: [ 0.84130859375, 0.62548828125, 0.6337890625 ], + uptime: 6799 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T07:38:19.637Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 11:10:26 GMT+0330 (Iran Standard Time)', + process: { + pid: 14329, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126267392, + heapTotal: 84557824, + heapUsed: 66482928, + external: 21491533, + arrayBuffers: 20026292 + } + }, + os: { + loadavg: [ 0.5224609375, 0.56689453125, 0.61279296875 ], + uptime: 6926 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T07:40:26.295Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 11:17:30 GMT+0330 (Iran Standard Time)', + process: { + pid: 14828, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126631936, + heapTotal: 84557824, + heapUsed: 66559184, + external: 21565342, + arrayBuffers: 20100101 + } + }, + os: { loadavg: [ 0.5947265625, 0.5888671875, 0.6015625 ], uptime: 7350 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T07:47:30.386Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 11:26:42 GMT+0330 (Iran Standard Time)', + process: { + pid: 15488, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 126885888, + heapTotal: 84557824, + heapUsed: 66476424, + external: 21491878, + arrayBuffers: 20026637 + } + }, + os: { + loadavg: [ 1.34814453125, 0.88916015625, 0.720703125 ], + uptime: 7902 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T07:56:42.601Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 11:30:24 GMT+0330 (Iran Standard Time)', + process: { + pid: 15882, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127000576, + heapTotal: 84557824, + heapUsed: 66345104, + external: 21362195, + arrayBuffers: 19896954 + } + }, + os: { + loadavg: [ 1.30078125, 1.00048828125, 0.7939453125 ], + uptime: 8124 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 267, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 469, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T08:00:24.657Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + +<<<<<<< HEAD + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 15:37:00 GMT+0330 (Iran Standard Time)', + process: { + pid: 32819, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 130035712, + heapTotal: 86921216, + heapUsed: 56465536, + external: 20033195, + arrayBuffers: 18550076 + } + }, + os: { loadavg: [ 0.98, 0.83, 0.72 ], uptime: 24656 }, +======= + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 11:34:40 GMT+0330 (Iran Standard Time)', + process: { + pid: 16205, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 130301952, + heapTotal: 89280512, + heapUsed: 59656144, + external: 19918179, + arrayBuffers: 18452938 + } + }, + os: { + loadavg: [ 0.97314453125, 0.85546875, 0.77880859375 ], + uptime: 8380 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', +<<<<<<< HEAD + line: 268, +======= + line: 267, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', +<<<<<<< HEAD + line: 470, +======= + line: 469, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T12:07:00.790Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) +======= + timestamp: '2020-11-30T08:04:40.518Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + +<<<<<<< HEAD + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 15:44:56 GMT+0330 (Iran Standard Time)', + process: { + pid: 33411, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 131010560, + heapTotal: 86659072, + heapUsed: 57038128, + external: 20041387, + arrayBuffers: 18558268 + } + }, + os: { loadavg: [ 0.7, 0.68, 0.68 ], uptime: 25132 }, +======= + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 11:36:04 GMT+0330 (Iran Standard Time)', + process: { + pid: 16387, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127639552, + heapTotal: 84557824, + heapUsed: 66433400, + external: 21354003, + arrayBuffers: 19888762 + } + }, + os: { + loadavg: [ 0.84814453125, 0.822265625, 0.7724609375 ], + uptime: 8463 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', +<<<<<<< HEAD + line: 268, +======= + line: 267, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', +<<<<<<< HEAD + line: 470, +======= + line: 469, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T12:14:56.868Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) +======= + timestamp: '2020-11-30T08:06:04.052Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) + at onErrorNT (internal/child_process.js:469:16) +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + +<<<<<<< HEAD + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 15:46:38 GMT+0330 (Iran Standard Time)', + process: { + pid: 33597, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 130887680, + heapTotal: 86921216, + heapUsed: 56022096, + external: 20016811, + arrayBuffers: 18533692 + } + }, + os: { loadavg: [ 1.33, 0.9, 0.76 ], uptime: 25234 }, +======= + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)\n' + + ' at onErrorNT (internal/child_process.js:469:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 11:38:50 GMT+0330 (Iran Standard Time)', + process: { + pid: 16638, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127651840, + heapTotal: 84557824, + heapUsed: 66419664, + external: 21354003, + arrayBuffers: 19888762 + } + }, + os: { + loadavg: [ 0.97412109375, 0.8935546875, 0.814453125 ], + uptime: 8630 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', +<<<<<<< HEAD + line: 268, +======= + line: 267, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', +<<<<<<< HEAD + line: 470, +======= + line: 469, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T12:16:38.616Z' +======= + timestamp: '2020-11-30T08:08:50.895Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, +<<<<<<< HEAD + date: 'Mon Nov 30 2020 15:48:34 GMT+0330 (Iran Standard Time)', + process: { + pid: 33805, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 130355200, + heapTotal: 86396928, + heapUsed: 57709080, + external: 20065963, + arrayBuffers: 18582844 + } + }, + os: { loadavg: [ 1.22, 0.94, 0.79 ], uptime: 25350 }, +======= + date: 'Mon Nov 30 2020 14:57:23 GMT+0330 (Iran Standard Time)', + process: { + pid: 28162, + uid: 1000, + gid: 1000, + cwd: '/home/polychain3/exchange/server', + execPath: '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + version: 'v12.18.4', + argv: [ + '/home/polychain3/.nvm/versions/node/v12.18.4/bin/node', + '/home/polychain3/exchange/server/index.js' + ], + memoryUsage: { + rss: 127389696, + heapTotal: 84557824, + heapUsed: 66434896, + external: 21491881, + arrayBuffers: 20026640 + } + }, + os: { + loadavg: [ 0.6259765625, 0.439453125, 0.4130859375 ], + uptime: 20542 + }, +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-11-30T12:18:35.001Z' +======= + timestamp: '2020-11-30T11:27:23.192Z' +>>>>>>> 6c706ecec75a869c24841727e7d1325d9306c994 +} +======= + timestamp: '2020-11-30T12:21:06.177Z' } +>>>>>>> 012bcd70d97c0eb31d1f5d15cae527fce24b6f74 +{ + error: Error: Cannot find module 'ethereumjs-common' + Require stack: + - /home/hamid/projects/exchange/server/api/walletApi/etheriuem.js + - /home/hamid/projects/exchange/server/index.js + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:815:15) + at Function.Module._load (internal/modules/cjs/loader.js:667:27) + at Module.require (internal/modules/cjs/loader.js:887:19) + at require (internal/modules/cjs/helpers.js:74:18) + at Object. (/home/hamid/projects/exchange/server/api/walletApi/etheriuem.js:40:27) + at Module._compile (internal/modules/cjs/loader.js:999:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10) + at Module.load (internal/modules/cjs/loader.js:863:32) + at Function.Module._load (internal/modules/cjs/loader.js:708:14) + at Module.require (internal/modules/cjs/loader.js:887:19) + at require (internal/modules/cjs/helpers.js:74:18) + at Object. (/home/hamid/projects/exchange/server/index.js:24:22) + at Module._compile (internal/modules/cjs/loader.js:999:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10) + at Module.load (internal/modules/cjs/loader.js:863:32) + at Function.Module._load (internal/modules/cjs/loader.js:708:14) { + code: 'MODULE_NOT_FOUND', + requireStack: [ + '/home/hamid/projects/exchange/server/api/walletApi/etheriuem.js', + '/home/hamid/projects/exchange/server/index.js' + ] + }, + level: 'error', + message: "uncaughtException: Cannot find module 'ethereumjs-common'\n" + + 'Require stack:\n' + + '- /home/hamid/projects/exchange/server/api/walletApi/etheriuem.js\n' + + '- /home/hamid/projects/exchange/server/index.js\n' + + "Error: Cannot find module 'ethereumjs-common'\n" + + 'Require stack:\n' + + '- /home/hamid/projects/exchange/server/api/walletApi/etheriuem.js\n' + + '- /home/hamid/projects/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:815:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:667:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:887:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/api/walletApi/etheriuem.js:40:27)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:887:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:24:22)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)', + stack: "Error: Cannot find module 'ethereumjs-common'\n" + + 'Require stack:\n' + + '- /home/hamid/projects/exchange/server/api/walletApi/etheriuem.js\n' + + '- /home/hamid/projects/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:815:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:667:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:887:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/api/walletApi/etheriuem.js:40:27)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:887:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:24:22)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)', + exception: true, + date: 'Mon Nov 30 2020 16:29:27 GMT+0330 (Iran Standard Time)', + process: { + pid: 37372, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 79106048, + heapTotal: 57954304, + heapUsed: 30494272, + external: 20460890, + arrayBuffers: 19087812 + } + }, + os: { loadavg: [ 0.74, 0.42, 0.39 ], uptime: 27802 }, + trace: [ + { + column: 15, + file: 'internal/modules/cjs/loader.js', + function: 'Module._resolveFilename', + line: 815, + method: '_resolveFilename', + native: false + }, + { + column: 27, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 667, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 887, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 74, + method: null, + native: false + }, + { + column: 27, + file: '/home/hamid/projects/exchange/server/api/walletApi/etheriuem.js', + function: null, + line: 40, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 999, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1027, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 863, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 708, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 887, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 74, + method: null, + native: false + }, + { + column: 22, + file: '/home/hamid/projects/exchange/server/index.js', + function: null, + line: 24, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 999, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1027, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 863, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 708, + method: '_load', + native: false + } + ], + timestamp: '2020-11-30T12:59:27.359Z' +} +{ + error: Error: Cannot find module 'ethereumjs-common' + Require stack: + - /home/hamid/projects/exchange/server/api/walletApi/etheriuem.js + - /home/hamid/projects/exchange/server/index.js + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:815:15) + at Function.Module._load (internal/modules/cjs/loader.js:667:27) + at Module.require (internal/modules/cjs/loader.js:887:19) + at require (internal/modules/cjs/helpers.js:74:18) + at Object. (/home/hamid/projects/exchange/server/api/walletApi/etheriuem.js:40:27) + at Module._compile (internal/modules/cjs/loader.js:999:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10) + at Module.load (internal/modules/cjs/loader.js:863:32) + at Function.Module._load (internal/modules/cjs/loader.js:708:14) + at Module.require (internal/modules/cjs/loader.js:887:19) + at require (internal/modules/cjs/helpers.js:74:18) + at Object. (/home/hamid/projects/exchange/server/index.js:24:22) + at Module._compile (internal/modules/cjs/loader.js:999:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10) + at Module.load (internal/modules/cjs/loader.js:863:32) + at Function.Module._load (internal/modules/cjs/loader.js:708:14) { + code: 'MODULE_NOT_FOUND', + requireStack: [ + '/home/hamid/projects/exchange/server/api/walletApi/etheriuem.js', + '/home/hamid/projects/exchange/server/index.js' + ] + }, + level: 'error', + message: "uncaughtException: Cannot find module 'ethereumjs-common'\n" + + 'Require stack:\n' + + '- /home/hamid/projects/exchange/server/api/walletApi/etheriuem.js\n' + + '- /home/hamid/projects/exchange/server/index.js\n' + + "Error: Cannot find module 'ethereumjs-common'\n" + + 'Require stack:\n' + + '- /home/hamid/projects/exchange/server/api/walletApi/etheriuem.js\n' + + '- /home/hamid/projects/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:815:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:667:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:887:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/api/walletApi/etheriuem.js:40:27)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:887:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:24:22)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)', + stack: "Error: Cannot find module 'ethereumjs-common'\n" + + 'Require stack:\n' + + '- /home/hamid/projects/exchange/server/api/walletApi/etheriuem.js\n' + + '- /home/hamid/projects/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:815:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:667:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:887:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/api/walletApi/etheriuem.js:40:27)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:887:19)\n' + + ' at require (internal/modules/cjs/helpers.js:74:18)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:24:22)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)', + exception: true, + date: 'Mon Nov 30 2020 17:10:58 GMT+0330 (Iran Standard Time)', + process: { + pid: 40196, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 79376384, + heapTotal: 58146816, + heapUsed: 30862352, + external: 20503115, + arrayBuffers: 19130037 + } + }, + os: { loadavg: [ 0.68, 0.81, 0.64 ], uptime: 30294 }, + trace: [ + { + column: 15, + file: 'internal/modules/cjs/loader.js', + function: 'Module._resolveFilename', + line: 815, + method: '_resolveFilename', + native: false + }, + { + column: 27, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 667, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 887, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 74, + method: null, + native: false + }, + { + column: 27, + file: '/home/hamid/projects/exchange/server/api/walletApi/etheriuem.js', + function: null, + line: 40, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 999, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1027, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 863, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 708, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 887, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 74, + method: null, + native: false + }, + { + column: 22, + file: '/home/hamid/projects/exchange/server/index.js', + function: null, + line: 24, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 999, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1027, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 863, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 708, + method: '_load', + native: false + } + ], + timestamp: '2020-11-30T13:40:58.882Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 17:11:36 GMT+0330 (Iran Standard Time)', + process: { + pid: 40353, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 140439552, + heapTotal: 92864512, + heapUsed: 71311256, + external: 20372673, + arrayBuffers: 18880407 + } + }, + os: { loadavg: [ 0.88, 0.86, 0.66 ], uptime: 30331 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T13:41:36.120Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 17:14:17 GMT+0330 (Iran Standard Time)', + process: { + pid: 40567, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 140005376, + heapTotal: 92864512, + heapUsed: 71600608, + external: 20380865, + arrayBuffers: 18888599 + } + }, + os: { loadavg: [ 0.99, 0.8, 0.66 ], uptime: 30493 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T13:44:17.737Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 17:16:17 GMT+0330 (Iran Standard Time)', + process: { + pid: 40754, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 140046336, + heapTotal: 93126656, + heapUsed: 71279608, + external: 20372673, + arrayBuffers: 18880407 + } + }, + os: { loadavg: [ 0.91, 0.76, 0.66 ], uptime: 30613 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T13:46:17.820Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 17:20:42 GMT+0330 (Iran Standard Time)', + process: { + pid: 41087, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 136749056, + heapTotal: 92602368, + heapUsed: 72145080, + external: 20397249, + arrayBuffers: 18904983 + } + }, + os: { loadavg: [ 0.71, 0.6, 0.6 ], uptime: 30878 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T13:50:42.450Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 18:30:37 GMT+0330 (Iran Standard Time)', + process: { + pid: 46914, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 137535488, + heapTotal: 92602368, + heapUsed: 72296712, + external: 20405441, + arrayBuffers: 18913175 + } + }, + os: { loadavg: [ 0.79, 0.57, 0.49 ], uptime: 35072 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T15:00:37.134Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 18:34:14 GMT+0330 (Iran Standard Time)', + process: { + pid: 47265, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 138428416, + heapTotal: 92602368, + heapUsed: 71877976, + external: 20389057, + arrayBuffers: 18896791 + } + }, + os: { loadavg: [ 0.59, 0.61, 0.53 ], uptime: 35290 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T15:04:14.551Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 18:44:05 GMT+0330 (Iran Standard Time)', + process: { + pid: 47935, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 139476992, + heapTotal: 92864512, + heapUsed: 71817256, + external: 20380865, + arrayBuffers: 18888599 + } + }, + os: { loadavg: [ 0.4, 0.39, 0.44 ], uptime: 35881 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T15:14:05.672Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 18:48:05 GMT+0330 (Iran Standard Time)', + process: { + pid: 48279, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 139735040, + heapTotal: 92864512, + heapUsed: 72055280, + external: 20389057, + arrayBuffers: 18896791 + } + }, + os: { loadavg: [ 0.88, 0.62, 0.52 ], uptime: 36120 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T15:18:05.171Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 18:49:55 GMT+0330 (Iran Standard Time)', + process: { + pid: 48475, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 139956224, + heapTotal: 92864512, + heapUsed: 71743512, + external: 20380865, + arrayBuffers: 18888599 + } + }, + os: { loadavg: [ 0.97, 0.69, 0.56 ], uptime: 36231 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T15:19:55.533Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Mon Nov 30 2020 18:52:54 GMT+0330 (Iran Standard Time)', + process: { + pid: 48753, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 139837440, + heapTotal: 92864512, + heapUsed: 71930248, + external: 20389057, + arrayBuffers: 18896791 + } + }, + os: { loadavg: [ 0.94, 0.71, 0.58 ], uptime: 36410 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-11-30T15:22:54.656Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Tue Dec 01 2020 09:07:57 GMT+0330 (Iran Standard Time)', + process: { + pid: 5594, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 136683520, + heapTotal: 91820032, + heapUsed: 67289088, + external: 20315329, + arrayBuffers: 18823063 + } + }, + os: { loadavg: [ 1.12, 1.56, 1.43 ], uptime: 923 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-01T05:37:57.214Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Tue Dec 01 2020 09:11:20 GMT+0330 (Iran Standard Time)', + process: { + pid: 6292, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 139767808, + heapTotal: 92868608, + heapUsed: 71651640, + external: 20380865, + arrayBuffers: 18888599 + } + }, + os: { loadavg: [ 1.27, 1.33, 1.37 ], uptime: 1126 }, +======= + date: 'Mon Nov 30 2020 10:23:55 GMT-0500 (Eastern Standard Time)', + process: { + pid: 53723, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 113184768, + heapTotal: 82042880, + heapUsed: 46182440, + external: 20955352, + arrayBuffers: 19372314 + } + }, + os: { + loadavg: [ 2.2548828125, 2.23583984375, 2.126953125 ], + uptime: 513395 + }, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', +<<<<<<< HEAD + line: 268, +======= + line: 269, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', +<<<<<<< HEAD + line: 470, +======= + line: 465, +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], +<<<<<<< HEAD + timestamp: '2020-12-01T05:41:20.349Z' +======= + timestamp: '2020-11-30T15:23:55.209Z' +>>>>>>> 9b65fa157d7861bf4587956d1ac154d3f7ad8108 +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Tue Dec 01 2020 11:34:21 GMT+0330 (Iran Standard Time)', + process: { + pid: 19676, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 139051008, + heapTotal: 92467200, + heapUsed: 72275168, + external: 20406526, + arrayBuffers: 18914260 + } + }, + os: { loadavg: [ 0.65, 0.54, 0.57 ], uptime: 9707 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-01T08:04:21.176Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Tue Dec 01 2020 11:36:57 GMT+0330 (Iran Standard Time)', + process: { + pid: 19941, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 138211328, + heapTotal: 92729344, + heapUsed: 72338120, + external: 20406526, + arrayBuffers: 18914260 + } + }, + os: { loadavg: [ 1.06, 0.62, 0.59 ], uptime: 9863 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-01T08:06:57.326Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 11:29:09 GMT+0330 (Iran Standard Time)', + process: { + pid: 23495, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143491072, + heapTotal: 98537472, + heapUsed: 73664104, + external: 20736270, + arrayBuffers: 19242291 + } + }, + os: { loadavg: [ 1.2, 0.76, 0.83 ], uptime: 8878 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T07:59:09.666Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 11:29:40 GMT+0330 (Iran Standard Time)', + process: { + pid: 24191, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145244160, + heapTotal: 98013184, + heapUsed: 74281184, + external: 20904179, + arrayBuffers: 19410200 + } + }, + os: { loadavg: [ 0.91, 0.73, 0.82 ], uptime: 8908 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T07:59:40.039Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 11:38:30 GMT+0330 (Iran Standard Time)', + process: { + pid: 25328, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145846272, + heapTotal: 98799616, + heapUsed: 73668592, + external: 20736270, + arrayBuffers: 19242291 + } + }, + os: { loadavg: [ 1.04, 0.66, 0.72 ], uptime: 9439 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:08:30.550Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 11:40:03 GMT+0330 (Iran Standard Time)', + process: { + pid: 25532, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143396864, + heapTotal: 97226752, + heapUsed: 73799072, + external: 20824841, + arrayBuffers: 19330862 + } + }, + os: { loadavg: [ 0.38, 0.55, 0.67 ], uptime: 9532 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:10:03.738Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 11:50:34 GMT+0330 (Iran Standard Time)', + process: { + pid: 27093, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144482304, + heapTotal: 97222656, + heapUsed: 75569376, + external: 21069922, + arrayBuffers: 19575943 + } + }, + os: { loadavg: [ 1.15, 1.03, 0.9 ], uptime: 10163 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:20:34.477Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 11:51:57 GMT+0330 (Iran Standard Time)', + process: { + pid: 27288, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144162816, + heapTotal: 96960512, + heapUsed: 76384936, + external: 21227419, + arrayBuffers: 19733440 + } + }, + os: { loadavg: [ 1.01, 1, 0.9 ], uptime: 10246 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:21:57.918Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 11:54:17 GMT+0330 (Iran Standard Time)', + process: { + pid: 27564, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145317888, + heapTotal: 97222656, + heapUsed: 75553168, + external: 21069922, + arrayBuffers: 19575943 + } + }, + os: { loadavg: [ 0.67, 0.92, 0.89 ], uptime: 10386 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:24:17.398Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 12:04:04 GMT+0330 (Iran Standard Time)', + process: { + pid: 28641, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145637376, + heapTotal: 97222656, + heapUsed: 76268336, + external: 21181938, + arrayBuffers: 19687959 + } + }, + os: { loadavg: [ 1.2, 0.88, 0.85 ], uptime: 10973 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:34:04.283Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 12:08:18 GMT+0330 (Iran Standard Time)', + process: { + pid: 29116, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144605184, + heapTotal: 97222656, + heapUsed: 75874872, + external: 21165554, + arrayBuffers: 19671575 + } + }, + os: { loadavg: [ 1.07, 0.94, 0.87 ], uptime: 11227 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:38:18.352Z' +} +{ + error: TypeError: scocketIo is not a constructor + at Object.startIo (/home/hamid/projects/exchange/server/api/socket.js:18:14) + at Object. (/home/hamid/projects/exchange/server/index.js:68:20) + at Module._compile (internal/modules/cjs/loader.js:999:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10) + at Module.load (internal/modules/cjs/loader.js:863:32) + at Function.Module._load (internal/modules/cjs/loader.js:708:14) + at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12) + at internal/main/run_main_module.js:17:47, + level: 'error', + message: 'uncaughtException: scocketIo is not a constructor\n' + + 'TypeError: scocketIo is not a constructor\n' + + ' at Object.startIo (/home/hamid/projects/exchange/server/api/socket.js:18:14)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:68:20)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)\n' + + ' at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12)\n' + + ' at internal/main/run_main_module.js:17:47', + stack: 'TypeError: scocketIo is not a constructor\n' + + ' at Object.startIo (/home/hamid/projects/exchange/server/api/socket.js:18:14)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:68:20)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)\n' + + ' at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12)\n' + + ' at internal/main/run_main_module.js:17:47', + exception: true, + date: 'Thu Dec 03 2020 12:15:22 GMT+0330 (Iran Standard Time)', + process: { + pid: 29900, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 82399232, + heapTotal: 59002880, + heapUsed: 33656792, + external: 20765646, + arrayBuffers: 19312134 + } + }, + os: { loadavg: [ 0.98, 0.71, 0.78 ], uptime: 11651 }, + trace: [ + { + column: 14, + file: '/home/hamid/projects/exchange/server/api/socket.js', + function: 'Object.startIo', + line: 18, + method: 'startIo', + native: false + }, + { + column: 20, + file: '/home/hamid/projects/exchange/server/index.js', + function: null, + line: 68, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 999, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1027, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 863, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 708, + method: '_load', + native: false + }, + { + column: 12, + file: 'internal/modules/run_main.js', + function: 'Function.executeUserEntryPoint [as runMain]', + line: 60, + method: 'executeUserEntryPoint [as runMain]', + native: false + }, + { + column: 47, + file: 'internal/main/run_main_module.js', + function: null, + line: 17, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:45:22.733Z' +} +{ + error: TypeError: scocketIo is not a constructor + at Object.startIo (/home/hamid/projects/exchange/server/api/socket.js:17:14) + at Object. (/home/hamid/projects/exchange/server/index.js:68:20) + at Module._compile (internal/modules/cjs/loader.js:999:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10) + at Module.load (internal/modules/cjs/loader.js:863:32) + at Function.Module._load (internal/modules/cjs/loader.js:708:14) + at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12) + at internal/main/run_main_module.js:17:47, + level: 'error', + message: 'uncaughtException: scocketIo is not a constructor\n' + + 'TypeError: scocketIo is not a constructor\n' + + ' at Object.startIo (/home/hamid/projects/exchange/server/api/socket.js:17:14)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:68:20)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)\n' + + ' at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12)\n' + + ' at internal/main/run_main_module.js:17:47', + stack: 'TypeError: scocketIo is not a constructor\n' + + ' at Object.startIo (/home/hamid/projects/exchange/server/api/socket.js:17:14)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:68:20)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)\n' + + ' at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12)\n' + + ' at internal/main/run_main_module.js:17:47', + exception: true, + date: 'Thu Dec 03 2020 12:16:02 GMT+0330 (Iran Standard Time)', + process: { + pid: 30002, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 82112512, + heapTotal: 58740736, + heapUsed: 33495784, + external: 20773838, + arrayBuffers: 19320326 + } + }, + os: { loadavg: [ 1.34, 0.83, 0.81 ], uptime: 11691 }, + trace: [ + { + column: 14, + file: '/home/hamid/projects/exchange/server/api/socket.js', + function: 'Object.startIo', + line: 17, + method: 'startIo', + native: false + }, + { + column: 20, + file: '/home/hamid/projects/exchange/server/index.js', + function: null, + line: 68, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 999, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1027, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 863, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 708, + method: '_load', + native: false + }, + { + column: 12, + file: 'internal/modules/run_main.js', + function: 'Function.executeUserEntryPoint [as runMain]', + line: 60, + method: 'executeUserEntryPoint [as runMain]', + native: false + }, + { + column: 47, + file: 'internal/main/run_main_module.js', + function: null, + line: 17, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:46:02.933Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 12:16:35 GMT+0330 (Iran Standard Time)', + process: { + pid: 30060, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145383424, + heapTotal: 97222656, + heapUsed: 75932360, + external: 21165554, + arrayBuffers: 19671575 + } + }, + os: { loadavg: [ 1.43, 0.91, 0.84 ], uptime: 11724 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:46:35.124Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 12:18:59 GMT+0330 (Iran Standard Time)', + process: { + pid: 30301, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144457728, + heapTotal: 97222656, + heapUsed: 76392632, + external: 21173746, + arrayBuffers: 19679767 + } + }, + os: { loadavg: [ 0.88, 0.77, 0.79 ], uptime: 11868 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:48:59.718Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 12:24:33 GMT+0330 (Iran Standard Time)', + process: { + pid: 30837, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 146116608, + heapTotal: 97222656, + heapUsed: 76237136, + external: 21181938, + arrayBuffers: 19687959 + } + }, + os: { loadavg: [ 1.02, 0.78, 0.78 ], uptime: 12201 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:54:33.021Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 12:27:13 GMT+0330 (Iran Standard Time)', + process: { + pid: 31194, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144728064, + heapTotal: 97222656, + heapUsed: 75951528, + external: 21165554, + arrayBuffers: 19671575 + } + }, + os: { loadavg: [ 0.9, 0.84, 0.81 ], uptime: 12362 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T08:57:13.354Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 12:40:42 GMT+0330 (Iran Standard Time)', + process: { + pid: 33226, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145354752, + heapTotal: 97222656, + heapUsed: 76127704, + external: 21173746, + arrayBuffers: 19679767 + } + }, + os: { loadavg: [ 0.91, 0.82, 0.81 ], uptime: 13171 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T09:10:42.346Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:05:58 GMT+0330 (Iran Standard Time)', + process: { + pid: 35226, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145158144, + heapTotal: 97222656, + heapUsed: 76311960, + external: 21191166, + arrayBuffers: 19697187 + } + }, + os: { loadavg: [ 0.84, 0.4, 0.51 ], uptime: 14687 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T09:35:58.708Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:06:51 GMT+0330 (Iran Standard Time)', + process: { + pid: 35341, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144887808, + heapTotal: 96960512, + heapUsed: 76324400, + external: 21201727, + arrayBuffers: 19707748 + } + }, + os: { loadavg: [ 0.57, 0.38, 0.5 ], uptime: 14740 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T09:36:51.214Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:08:06 GMT+0330 (Iran Standard Time)', + process: { + pid: 35477, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143048704, + heapTotal: 97484800, + heapUsed: 75799136, + external: 21069922, + arrayBuffers: 19575943 + } + }, + os: { loadavg: [ 0.71, 0.46, 0.52 ], uptime: 14814 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T09:38:06.042Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:31:54 GMT+0330 (Iran Standard Time)', + process: { + pid: 37632, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144531456, + heapTotal: 97222656, + heapUsed: 75978032, + external: 21112389, + arrayBuffers: 19618410 + } + }, + os: { loadavg: [ 0.97, 0.59, 0.53 ], uptime: 16243 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:01:54.903Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:32:43 GMT+0330 (Iran Standard Time)', + process: { + pid: 37711, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 146100224, + heapTotal: 96960512, + heapUsed: 76249528, + external: 21191166, + arrayBuffers: 19697187 + } + }, + os: { loadavg: [ 0.75, 0.57, 0.53 ], uptime: 16292 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:02:43.151Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:33:16 GMT+0330 (Iran Standard Time)', + process: { + pid: 37826, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143695872, + heapTotal: 98013184, + heapUsed: 75268544, + external: 20954217, + arrayBuffers: 19460238 + } + }, + os: { loadavg: [ 1.01, 0.65, 0.56 ], uptime: 16325 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:03:16.644Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:33:40 GMT+0330 (Iran Standard Time)', + process: { + pid: 37877, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144859136, + heapTotal: 97222656, + heapUsed: 75972440, + external: 21165554, + arrayBuffers: 19671575 + } + }, + os: { loadavg: [ 1.13, 0.71, 0.58 ], uptime: 16349 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:03:40.213Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:35:38 GMT+0330 (Iran Standard Time)', + process: { + pid: 38111, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144510976, + heapTotal: 97484800, + heapUsed: 75121392, + external: 20995114, + arrayBuffers: 19501135 + } + }, + os: { loadavg: [ 0.64, 0.62, 0.55 ], uptime: 16467 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:05:38.357Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:46:17 GMT+0330 (Iran Standard Time)', + process: { + pid: 39640, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 146337792, + heapTotal: 96960512, + heapUsed: 76476096, + external: 21201727, + arrayBuffers: 19707748 + } + }, + os: { loadavg: [ 1.59, 1.03, 0.74 ], uptime: 17106 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:16:17.239Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:48:44 GMT+0330 (Iran Standard Time)', + process: { + pid: 39935, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144580608, + heapTotal: 97222656, + heapUsed: 76174856, + external: 21173746, + arrayBuffers: 19679767 + } + }, + os: { loadavg: [ 1.17, 0.99, 0.76 ], uptime: 17253 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:18:44.181Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:51:30 GMT+0330 (Iran Standard Time)', + process: { + pid: 40220, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144809984, + heapTotal: 97222656, + heapUsed: 75974472, + external: 21112389, + arrayBuffers: 19618410 + } + }, + os: { loadavg: [ 0.71, 0.77, 0.71 ], uptime: 17418 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:21:30.002Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:58:13 GMT+0330 (Iran Standard Time)', + process: { + pid: 40695, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145362944, + heapTotal: 97222656, + heapUsed: 76006696, + external: 21165554, + arrayBuffers: 19671575 + } + }, + os: { loadavg: [ 0.32, 0.41, 0.56 ], uptime: 17822 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:28:13.419Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 13:58:56 GMT+0330 (Iran Standard Time)', + process: { + pid: 40811, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143708160, + heapTotal: 97222656, + heapUsed: 75872080, + external: 21112389, + arrayBuffers: 19618410 + } + }, + os: { loadavg: [ 0.81, 0.51, 0.58 ], uptime: 17865 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:28:56.096Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:00:58 GMT+0330 (Iran Standard Time)', + process: { + pid: 41079, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143511552, + heapTotal: 97222656, + heapUsed: 75846296, + external: 21081164, + arrayBuffers: 19587185 + } + }, + os: { loadavg: [ 0.76, 0.56, 0.59 ], uptime: 17987 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:30:58.678Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:03:12 GMT+0330 (Iran Standard Time)', + process: { + pid: 41275, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 142655488, + heapTotal: 97222656, + heapUsed: 75928472, + external: 21165554, + arrayBuffers: 19671575 + } + }, + os: { loadavg: [ 0.61, 0.54, 0.57 ], uptime: 18121 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:33:12.851Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:05:16 GMT+0330 (Iran Standard Time)', + process: { + pid: 41516, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 147009536, + heapTotal: 96960512, + heapUsed: 76304072, + external: 21181938, + arrayBuffers: 19687959 + } + }, + os: { loadavg: [ 1.21, 0.67, 0.6 ], uptime: 18245 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:35:16.524Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:07:08 GMT+0330 (Iran Standard Time)', + process: { + pid: 41708, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144281600, + heapTotal: 96960512, + heapUsed: 76368816, + external: 21181938, + arrayBuffers: 19687959 + } + }, + os: { loadavg: [ 1.39, 0.82, 0.66 ], uptime: 18357 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:37:08.662Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:09:57 GMT+0330 (Iran Standard Time)', + process: { + pid: 41935, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144199680, + heapTotal: 96960512, + heapUsed: 76245264, + external: 21191166, + arrayBuffers: 19697187 + } + }, + os: { loadavg: [ 0.48, 0.63, 0.61 ], uptime: 18526 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:39:57.150Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:12:16 GMT+0330 (Iran Standard Time)', + process: { + pid: 42124, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143241216, + heapTotal: 97222656, + heapUsed: 76301816, + external: 21181938, + arrayBuffers: 19687959 + } + }, + os: { loadavg: [ 0.56, 0.54, 0.57 ], uptime: 18665 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:42:16.541Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:29:07 GMT+0330 (Iran Standard Time)', + process: { + pid: 43365, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145432576, + heapTotal: 97222656, + heapUsed: 76177016, + external: 21191166, + arrayBuffers: 19697187 + } + }, + os: { loadavg: [ 0.5, 0.36, 0.45 ], uptime: 19676 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T10:59:07.688Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:32:13 GMT+0330 (Iran Standard Time)', + process: { + pid: 43636, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143728640, + heapTotal: 97222656, + heapUsed: 75698592, + external: 21076335, + arrayBuffers: 19582356 + } + }, + os: { loadavg: [ 0.89, 0.58, 0.52 ], uptime: 19862 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T11:02:13.580Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:34:11 GMT+0330 (Iran Standard Time)', + process: { + pid: 43842, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 146022400, + heapTotal: 97484800, + heapUsed: 75579368, + external: 21069922, + arrayBuffers: 19575943 + } + }, + os: { loadavg: [ 0.58, 0.52, 0.51 ], uptime: 19980 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T11:04:11.818Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:39:28 GMT+0330 (Iran Standard Time)', + process: { + pid: 44253, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145563648, + heapTotal: 97751040, + heapUsed: 76270272, + external: 21156338, + arrayBuffers: 19662359 + } + }, + os: { loadavg: [ 1.25, 0.7, 0.56 ], uptime: 20297 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T11:09:28.608Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:42:10 GMT+0330 (Iran Standard Time)', + process: { + pid: 44496, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144551936, + heapTotal: 97488896, + heapUsed: 76597416, + external: 21172722, + arrayBuffers: 19678743 + } + }, + os: { loadavg: [ 0.8, 0.66, 0.56 ], uptime: 20459 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T11:12:10.485Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:43:19 GMT+0330 (Iran Standard Time)', + process: { + pid: 44620, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144412672, + heapTotal: 99323904, + heapUsed: 73350224, + external: 20453874, + arrayBuffers: 18959895 + } + }, + os: { loadavg: [ 0.41, 0.56, 0.53 ], uptime: 20528 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T11:13:19.769Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:44:32 GMT+0330 (Iran Standard Time)', + process: { + pid: 44756, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144347136, + heapTotal: 97751040, + heapUsed: 75844960, + external: 21036401, + arrayBuffers: 19542422 + } + }, + os: { loadavg: [ 0.87, 0.66, 0.57 ], uptime: 20601 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T11:14:32.273Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:46:09 GMT+0330 (Iran Standard Time)', + process: { + pid: 44931, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145362944, + heapTotal: 98013184, + heapUsed: 75092400, + external: 20954217, + arrayBuffers: 19460238 + } + }, + os: { loadavg: [ 0.33, 0.51, 0.52 ], uptime: 20698 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T11:16:09.546Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:50:29 GMT+0330 (Iran Standard Time)', + process: { + pid: 45229, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 148537344, + heapTotal: 100372480, + heapUsed: 71551232, + external: 20165386, + arrayBuffers: 18671407 + } + }, + os: { loadavg: [ 0.37, 0.42, 0.47 ], uptime: 20958 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T11:20:29.917Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:51:01 GMT+0330 (Iran Standard Time)', + process: { + pid: 45274, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145534976, + heapTotal: 100110336, + heapUsed: 72426184, + external: 20324785, + arrayBuffers: 18830806 + } + }, + os: { loadavg: [ 0.65, 0.48, 0.49 ], uptime: 20990 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T11:21:01.191Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 14:51:37 GMT+0330 (Iran Standard Time)', + process: { + pid: 45398, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145321984, + heapTotal: 98275328, + heapUsed: 75287640, + external: 20954217, + arrayBuffers: 19460238 + } + }, + os: { loadavg: [ 0.71, 0.5, 0.5 ], uptime: 21026 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T11:21:37.451Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 16:28:27 GMT+0330 (Iran Standard Time)', + process: { + pid: 54598, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 147316736, + heapTotal: 98537472, + heapUsed: 75786568, + external: 21044593, + arrayBuffers: 19550614 + } + }, + os: { loadavg: [ 0.75, 0.89, 1.17 ], uptime: 26836 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T12:58:27.436Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 16:31:34 GMT+0330 (Iran Standard Time)', + process: { + pid: 54850, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 147005440, + heapTotal: 97751040, + heapUsed: 76906368, + external: 21218203, + arrayBuffers: 19724224 + } + }, + os: { loadavg: [ 0.59, 0.7, 1.04 ], uptime: 27023 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:01:34.933Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 16:32:19 GMT+0330 (Iran Standard Time)', + process: { + pid: 54951, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143466496, + heapTotal: 97751040, + heapUsed: 76036896, + external: 21103173, + arrayBuffers: 19609194 + } + }, + os: { loadavg: [ 1.08, 0.82, 1.06 ], uptime: 27068 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:02:19.602Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 16:42:20 GMT+0330 (Iran Standard Time)', + process: { + pid: 55773, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 146636800, + heapTotal: 97751040, + heapUsed: 75594944, + external: 21008723, + arrayBuffers: 19514744 + } + }, + os: { loadavg: [ 1.05, 0.6, 0.77 ], uptime: 27669 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:12:20.249Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 16:48:48 GMT+0330 (Iran Standard Time)', + process: { + pid: 56220, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 146374656, + heapTotal: 96960512, + heapUsed: 76254256, + external: 21181938, + arrayBuffers: 19687959 + } + }, + os: { loadavg: [ 0.7, 0.47, 0.63 ], uptime: 28057 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:18:48.918Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 16:52:21 GMT+0330 (Iran Standard Time)', + process: { + pid: 56501, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144519168, + heapTotal: 97222656, + heapUsed: 76182736, + external: 21173746, + arrayBuffers: 19679767 + } + }, + os: { loadavg: [ 0.62, 0.47, 0.6 ], uptime: 28270 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:22:21.817Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 16:56:06 GMT+0330 (Iran Standard Time)', + process: { + pid: 56819, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145653760, + heapTotal: 97222656, + heapUsed: 76540232, + external: 21209919, + arrayBuffers: 19715940 + } + }, + os: { loadavg: [ 0.24, 0.37, 0.53 ], uptime: 28495 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:26:06.271Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 16:59:05 GMT+0330 (Iran Standard Time)', + process: { + pid: 57058, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 142290944, + heapTotal: 97222656, + heapUsed: 75907328, + external: 21112389, + arrayBuffers: 19618410 + } + }, + os: { loadavg: [ 0.46, 0.34, 0.48 ], uptime: 28674 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:29:05.930Z' +} +{ + error: TypeError: io is not a function + at Object.startIo (/home/hamid/projects/exchange/server/api/socket.js:18:14) + at Object. (/home/hamid/projects/exchange/server/index.js:68:20) + at Module._compile (internal/modules/cjs/loader.js:999:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10) + at Module.load (internal/modules/cjs/loader.js:863:32) + at Function.Module._load (internal/modules/cjs/loader.js:708:14) + at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12) + at internal/main/run_main_module.js:17:47, + level: 'error', + message: 'uncaughtException: io is not a function\n' + + 'TypeError: io is not a function\n' + + ' at Object.startIo (/home/hamid/projects/exchange/server/api/socket.js:18:14)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:68:20)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)\n' + + ' at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12)\n' + + ' at internal/main/run_main_module.js:17:47', + stack: 'TypeError: io is not a function\n' + + ' at Object.startIo (/home/hamid/projects/exchange/server/api/socket.js:18:14)\n' + + ' at Object. (/home/hamid/projects/exchange/server/index.js:68:20)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:999:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:863:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:708:14)\n' + + ' at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12)\n' + + ' at internal/main/run_main_module.js:17:47', + exception: true, + date: 'Thu Dec 03 2020 17:03:30 GMT+0330 (Iran Standard Time)', + process: { + pid: 57463, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 82788352, + heapTotal: 59002880, + heapUsed: 33737992, + external: 20364770, + arrayBuffers: 18911258 + } + }, + os: { loadavg: [ 0.84, 0.62, 0.55 ], uptime: 28939 }, + trace: [ + { + column: 14, + file: '/home/hamid/projects/exchange/server/api/socket.js', + function: 'Object.startIo', + line: 18, + method: 'startIo', + native: false + }, + { + column: 20, + file: '/home/hamid/projects/exchange/server/index.js', + function: null, + line: 68, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 999, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1027, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 863, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 708, + method: '_load', + native: false + }, + { + column: 12, + file: 'internal/modules/run_main.js', + function: 'Function.executeUserEntryPoint [as runMain]', + line: 60, + method: 'executeUserEntryPoint [as runMain]', + native: false + }, + { + column: 47, + file: 'internal/main/run_main_module.js', + function: null, + line: 17, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:33:30.599Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 17:05:43 GMT+0330 (Iran Standard Time)', + process: { + pid: 57674, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144515072, + heapTotal: 97484800, + heapUsed: 75348136, + external: 20995114, + arrayBuffers: 19501135 + } + }, + os: { loadavg: [ 1.18, 0.77, 0.61 ], uptime: 29072 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:35:44.000Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 17:06:43 GMT+0330 (Iran Standard Time)', + process: { + pid: 57795, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144863232, + heapTotal: 96960512, + heapUsed: 76258784, + external: 21181938, + arrayBuffers: 19687959 + } + }, + os: { loadavg: [ 1.49, 0.89, 0.66 ], uptime: 29132 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:36:43.290Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 17:11:51 GMT+0330 (Iran Standard Time)', + process: { + pid: 58201, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 146747392, + heapTotal: 97222656, + heapUsed: 76336312, + external: 21201727, + arrayBuffers: 19707748 + } + }, + os: { loadavg: [ 0.86, 0.82, 0.69 ], uptime: 29439 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:41:51.053Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 17:12:24 GMT+0330 (Iran Standard Time)', + process: { + pid: 58282, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145891328, + heapTotal: 97222656, + heapUsed: 76059712, + external: 21165554, + arrayBuffers: 19671575 + } + }, + os: { loadavg: [ 1.16, 0.89, 0.71 ], uptime: 29473 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:42:24.566Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 17:14:06 GMT+0330 (Iran Standard Time)', + process: { + pid: 58449, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145022976, + heapTotal: 97222656, + heapUsed: 76087520, + external: 21173746, + arrayBuffers: 19679767 + } + }, + os: { loadavg: [ 0.62, 0.76, 0.68 ], uptime: 29574 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:44:06.058Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 17:17:38 GMT+0330 (Iran Standard Time)', + process: { + pid: 58742, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144908288, + heapTotal: 97488896, + heapUsed: 75780856, + external: 21036401, + arrayBuffers: 19542422 + } + }, + os: { loadavg: [ 0.82, 0.73, 0.67 ], uptime: 29787 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:47:38.593Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 17:18:11 GMT+0330 (Iran Standard Time)', + process: { + pid: 58818, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144535552, + heapTotal: 99323904, + heapUsed: 73465200, + external: 20478217, + arrayBuffers: 18984238 + } + }, + os: { loadavg: [ 1.3, 0.84, 0.71 ], uptime: 29820 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:48:11.332Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 17:18:40 GMT+0330 (Iran Standard Time)', + process: { + pid: 58928, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145096704, + heapTotal: 98013184, + heapUsed: 75949288, + external: 21060706, + arrayBuffers: 19566727 + } + }, + os: { loadavg: [ 1.08, 0.82, 0.71 ], uptime: 29849 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:48:40.709Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 17:19:58 GMT+0330 (Iran Standard Time)', + process: { + pid: 59114, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 147013632, + heapTotal: 101683200, + heapUsed: 72889384, + external: 20282864, + arrayBuffers: 18788885 + } + }, + os: { loadavg: [ 0.8, 0.78, 0.71 ], uptime: 29927 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:49:58.641Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 17:21:05 GMT+0330 (Iran Standard Time)', + process: { + pid: 59238, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143990784, + heapTotal: 97222656, + heapUsed: 76149928, + external: 21173746, + arrayBuffers: 19679767 + } + }, + os: { loadavg: [ 0.6, 0.71, 0.69 ], uptime: 29994 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:51:05.564Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 17:21:38 GMT+0330 (Iran Standard Time)', + process: { + pid: 59349, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 141991936, + heapTotal: 97484800, + heapUsed: 75363864, + external: 21022280, + arrayBuffers: 19528301 + } + }, + os: { loadavg: [ 1.6, 0.92, 0.76 ], uptime: 30027 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T13:51:38.619Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:31:17 GMT+0330 (Iran Standard Time)', + process: { + pid: 64156, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144654336, + heapTotal: 97222656, + heapUsed: 75707152, + external: 21069922, + arrayBuffers: 19575943 + } + }, + os: { loadavg: [ 0.45, 0.39, 0.37 ], uptime: 34206 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:01:17.841Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:33:53 GMT+0330 (Iran Standard Time)', + process: { + pid: 64568, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144527360, + heapTotal: 99586048, + heapUsed: 73222560, + external: 20370174, + arrayBuffers: 18876195 + } + }, + os: { loadavg: [ 1.08, 0.67, 0.47 ], uptime: 34362 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:03:53.356Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:35:36 GMT+0330 (Iran Standard Time)', + process: { + pid: 64737, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143745024, + heapTotal: 97751040, + heapUsed: 75261112, + external: 20973370, + arrayBuffers: 19479391 + } + }, + os: { loadavg: [ 1.04, 0.71, 0.5 ], uptime: 34465 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:05:36.693Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:38:45 GMT+0330 (Iran Standard Time)', + process: { + pid: 65052, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145403904, + heapTotal: 97484800, + heapUsed: 75502392, + external: 21045617, + arrayBuffers: 19551638 + } + }, + os: { loadavg: [ 0.83, 0.7, 0.54 ], uptime: 34654 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:08:45.064Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:39:31 GMT+0330 (Iran Standard Time)', + process: { + pid: 65137, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143126528, + heapTotal: 97222656, + heapUsed: 75811736, + external: 21165554, + arrayBuffers: 19671575 + } + }, + os: { loadavg: [ 0.59, 0.65, 0.53 ], uptime: 34700 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:09:31.158Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:42:10 GMT+0330 (Iran Standard Time)', + process: { + pid: 65373, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 143409152, + heapTotal: 97222656, + heapUsed: 75896112, + external: 21076335, + arrayBuffers: 19582356 + } + }, + os: { loadavg: [ 0.59, 0.6, 0.53 ], uptime: 34859 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:12:10.779Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:43:07 GMT+0330 (Iran Standard Time)', + process: { + pid: 65503, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144228352, + heapTotal: 96960512, + heapUsed: 76265896, + external: 21181938, + arrayBuffers: 19687959 + } + }, + os: { loadavg: [ 0.83, 0.64, 0.55 ], uptime: 34916 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:13:07.582Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:43:38 GMT+0330 (Iran Standard Time)', + process: { + pid: 65581, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 146415616, + heapTotal: 97222656, + heapUsed: 75779664, + external: 21081164, + arrayBuffers: 19587185 + } + }, + os: { loadavg: [ 1.11, 0.71, 0.57 ], uptime: 34947 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:13:38.517Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:48:45 GMT+0330 (Iran Standard Time)', + process: { + pid: 66124, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144429056, + heapTotal: 97222656, + heapUsed: 76076712, + external: 21165554, + arrayBuffers: 19671575 + } + }, + os: { loadavg: [ 1.25, 0.8, 0.62 ], uptime: 35254 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:18:45.154Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:50:43 GMT+0330 (Iran Standard Time)', + process: { + pid: 66336, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145256448, + heapTotal: 96960512, + heapUsed: 76212592, + external: 21181938, + arrayBuffers: 19687959 + } + }, + os: { loadavg: [ 1.03, 0.79, 0.64 ], uptime: 35372 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:20:43.350Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:52:04 GMT+0330 (Iran Standard Time)', + process: { + pid: 66507, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144822272, + heapTotal: 97222656, + heapUsed: 76063784, + external: 21165554, + arrayBuffers: 19671575 + } + }, + os: { loadavg: [ 1.27, 0.87, 0.68 ], uptime: 35453 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:22:04.693Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:52:53 GMT+0330 (Iran Standard Time)', + process: { + pid: 66632, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 142131200, + heapTotal: 97222656, + heapUsed: 75766488, + external: 21069922, + arrayBuffers: 19575943 + } + }, + os: { loadavg: [ 1.42, 0.94, 0.71 ], uptime: 35502 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:22:53.877Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:53:24 GMT+0330 (Iran Standard Time)', + process: { + pid: 66706, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144482304, + heapTotal: 96698368, + heapUsed: 77365984, + external: 21456142, + arrayBuffers: 19962163 + } + }, + os: { loadavg: [ 1.52, 1, 0.74 ], uptime: 35533 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:23:24.295Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:54:15 GMT+0330 (Iran Standard Time)', + process: { + pid: 66813, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144953344, + heapTotal: 97222656, + heapUsed: 76419256, + external: 21191166, + arrayBuffers: 19697187 + } + }, + os: { loadavg: [ 1.15, 0.96, 0.74 ], uptime: 35584 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:24:15.992Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:54:59 GMT+0330 (Iran Standard Time)', + process: { + pid: 66930, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 142454784, + heapTotal: 97222656, + heapUsed: 75732168, + external: 21069922, + arrayBuffers: 19575943 + } + }, + os: { loadavg: [ 1.51, 1.06, 0.78 ], uptime: 35628 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:24:59.619Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:55:50 GMT+0330 (Iran Standard Time)', + process: { + pid: 67057, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 141627392, + heapTotal: 96960512, + heapUsed: 76206808, + external: 21181938, + arrayBuffers: 19687959 + } + }, + os: { loadavg: [ 1.36, 1.1, 0.81 ], uptime: 35679 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:25:50.922Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:56:56 GMT+0330 (Iran Standard Time)', + process: { + pid: 67217, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 144502784, + heapTotal: 97222656, + heapUsed: 76140584, + external: 21173746, + arrayBuffers: 19679767 + } + }, + os: { loadavg: [ 0.53, 0.9, 0.76 ], uptime: 35745 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:26:56.698Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 18:58:31 GMT+0330 (Iran Standard Time)', + process: { + pid: 67352, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145571840, + heapTotal: 96698368, + heapUsed: 77205720, + external: 21456142, + arrayBuffers: 19962163 + } + }, + os: { loadavg: [ 0.47, 0.75, 0.72 ], uptime: 35840 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:28:31.820Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19) + at onErrorNT (internal/child_process.js:470:16) + at processTicksAndRejections (internal/process/task_queues.js:84:21) { + errno: 'ENOENT', + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:268:19)\n' + + ' at onErrorNT (internal/child_process.js:470:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)', + exception: true, + date: 'Thu Dec 03 2020 19:01:40 GMT+0330 (Iran Standard Time)', + process: { + pid: 67610, + uid: 1000, + gid: 1000, + cwd: '/home/hamid/projects/exchange/server', + execPath: '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + version: 'v12.20.0', + argv: [ + '/home/hamid/.nvm/versions/node/v12.20.0/bin/node', + '/home/hamid/projects/exchange/server/index.js' + ], + memoryUsage: { + rss: 145682432, + heapTotal: 97222656, + heapUsed: 76158800, + external: 21173746, + arrayBuffers: 19679767 + } + }, + os: { loadavg: [ 0.68, 0.67, 0.69 ], uptime: 36029 }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 268, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 470, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 84, + method: null, + native: false + } + ], + timestamp: '2020-12-03T15:31:40.155Z' +} +{ + error: Error: spawn mongorestore ENOENT + at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19) + at onErrorNT (internal/child_process.js:465:16) + at processTicksAndRejections (internal/process/task_queues.js:80:21) { + errno: -2, + code: 'ENOENT', + syscall: 'spawn mongorestore', + path: 'mongorestore', + spawnargs: [ 'trudesk/trudesk' ] + }, + level: 'error', + message: 'uncaughtException: spawn mongorestore ENOENT\n' + + 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + stack: 'Error: spawn mongorestore ENOENT\n' + + ' at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)\n' + + ' at onErrorNT (internal/child_process.js:465:16)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:80:21)', + exception: true, + date: 'Sat Dec 05 2020 08:27:17 GMT-0500 (Eastern Standard Time)', + process: { + pid: 83435, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 128282624, + heapTotal: 86888448, + heapUsed: 68799656, + external: 21668709, + arrayBuffers: 20085671 + } + }, + os: { + loadavg: [ 7.7001953125, 4.3916015625, 2.9755859375 ], + uptime: 938401 + }, + trace: [ + { + column: 19, + file: 'internal/child_process.js', + function: 'Process.ChildProcess._handle.onexit', + line: 269, + method: 'onexit', + native: false + }, + { + column: 16, + file: 'internal/child_process.js', + function: 'onErrorNT', + line: 465, + method: null, + native: false + }, + { + column: 21, + file: 'internal/process/task_queues.js', + function: 'processTicksAndRejections', + line: 80, + method: null, + native: false + } + ], + timestamp: '2020-12-05T13:27:17.769Z' +} +{ + error: Error: Cannot find module 'bcrypt' + Require stack: + - /Users/Kwin/Documents/exchange/server/db/user.js + - /Users/Kwin/Documents/exchange/server/routes/user.js + - /Users/Kwin/Documents/exchange/server/index.js + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15) + at Function.Module._load (internal/modules/cjs/loader.js:725:27) + at Module.require (internal/modules/cjs/loader.js:952:19) + at require (internal/modules/cjs/helpers.js:88:18) + at Object. (/Users/Kwin/Documents/exchange/server/db/user.js:5:14) + at Module._compile (internal/modules/cjs/loader.js:1063:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10) + at Module.load (internal/modules/cjs/loader.js:928:32) + at Function.Module._load (internal/modules/cjs/loader.js:769:14) + at Module.require (internal/modules/cjs/loader.js:952:19) + at require (internal/modules/cjs/helpers.js:88:18) + at Object. (/Users/Kwin/Documents/exchange/server/routes/user.js:56:14) + at Module._compile (internal/modules/cjs/loader.js:1063:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10) + at Module.load (internal/modules/cjs/loader.js:928:32) + at Function.Module._load (internal/modules/cjs/loader.js:769:14) { + code: 'MODULE_NOT_FOUND', + requireStack: [ + '/Users/Kwin/Documents/exchange/server/db/user.js', + '/Users/Kwin/Documents/exchange/server/routes/user.js', + '/Users/Kwin/Documents/exchange/server/index.js' + ] + }, + level: 'error', + message: "uncaughtException: Cannot find module 'bcrypt'\n" + + 'Require stack:\n' + + '- /Users/Kwin/Documents/exchange/server/db/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/routes/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/index.js\n' + + "Error: Cannot find module 'bcrypt'\n" + + 'Require stack:\n' + + '- /Users/Kwin/Documents/exchange/server/db/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/routes/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:725:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/db/user.js:5:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/routes/user.js:56:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)', + stack: "Error: Cannot find module 'bcrypt'\n" + + 'Require stack:\n' + + '- /Users/Kwin/Documents/exchange/server/db/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/routes/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:725:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/db/user.js:5:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/routes/user.js:56:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)', + exception: true, + date: 'Sat Dec 05 2020 08:35:24 GMT-0500 (Eastern Standard Time)', + process: { + pid: 83710, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 83288064, + heapTotal: 58855424, + heapUsed: 40951976, + external: 21418139, + arrayBuffers: 19865754 + } + }, + os: { + loadavg: [ 2.6455078125, 2.91845703125, 2.78466796875 ], + uptime: 938888 + }, + trace: [ + { + column: 15, + file: 'internal/modules/cjs/loader.js', + function: 'Module._resolveFilename', + line: 880, + method: '_resolveFilename', + native: false + }, + { + column: 27, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 725, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 952, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 88, + method: null, + native: false + }, + { + column: 14, + file: '/Users/Kwin/Documents/exchange/server/db/user.js', + function: null, + line: 5, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1063, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1092, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 928, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 769, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 952, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 88, + method: null, + native: false + }, + { + column: 14, + file: '/Users/Kwin/Documents/exchange/server/routes/user.js', + function: null, + line: 56, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1063, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1092, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 928, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 769, + method: '_load', + native: false + } + ], + timestamp: '2020-12-05T13:35:24.850Z' +} +{ + error: Error: Cannot find module 'bcrypt' + Require stack: + - /Users/Kwin/Documents/exchange/server/db/user.js + - /Users/Kwin/Documents/exchange/server/routes/user.js + - /Users/Kwin/Documents/exchange/server/index.js + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15) + at Function.Module._load (internal/modules/cjs/loader.js:725:27) + at Module.require (internal/modules/cjs/loader.js:952:19) + at require (internal/modules/cjs/helpers.js:88:18) + at Object. (/Users/Kwin/Documents/exchange/server/db/user.js:5:14) + at Module._compile (internal/modules/cjs/loader.js:1063:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10) + at Module.load (internal/modules/cjs/loader.js:928:32) + at Function.Module._load (internal/modules/cjs/loader.js:769:14) + at Module.require (internal/modules/cjs/loader.js:952:19) + at require (internal/modules/cjs/helpers.js:88:18) + at Object. (/Users/Kwin/Documents/exchange/server/routes/user.js:56:14) + at Module._compile (internal/modules/cjs/loader.js:1063:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10) + at Module.load (internal/modules/cjs/loader.js:928:32) + at Function.Module._load (internal/modules/cjs/loader.js:769:14) { + code: 'MODULE_NOT_FOUND', + requireStack: [ + '/Users/Kwin/Documents/exchange/server/db/user.js', + '/Users/Kwin/Documents/exchange/server/routes/user.js', + '/Users/Kwin/Documents/exchange/server/index.js' + ] + }, + level: 'error', + message: "uncaughtException: Cannot find module 'bcrypt'\n" + + 'Require stack:\n' + + '- /Users/Kwin/Documents/exchange/server/db/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/routes/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/index.js\n' + + "Error: Cannot find module 'bcrypt'\n" + + 'Require stack:\n' + + '- /Users/Kwin/Documents/exchange/server/db/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/routes/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:725:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/db/user.js:5:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/routes/user.js:56:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)', + stack: "Error: Cannot find module 'bcrypt'\n" + + 'Require stack:\n' + + '- /Users/Kwin/Documents/exchange/server/db/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/routes/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:725:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/db/user.js:5:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/routes/user.js:56:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)', + exception: true, + date: 'Sat Dec 05 2020 08:39:41 GMT-0500 (Eastern Standard Time)', + process: { + pid: 83844, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 80302080, + heapTotal: 61476864, + heapUsed: 39579280, + external: 21306830, + arrayBuffers: 19754445 + } + }, + os: { + loadavg: [ 1.94140625, 2.47607421875, 2.6259765625 ], + uptime: 939145 + }, + trace: [ + { + column: 15, + file: 'internal/modules/cjs/loader.js', + function: 'Module._resolveFilename', + line: 880, + method: '_resolveFilename', + native: false + }, + { + column: 27, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 725, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 952, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 88, + method: null, + native: false + }, + { + column: 14, + file: '/Users/Kwin/Documents/exchange/server/db/user.js', + function: null, + line: 5, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1063, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1092, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 928, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 769, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 952, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 88, + method: null, + native: false + }, + { + column: 14, + file: '/Users/Kwin/Documents/exchange/server/routes/user.js', + function: null, + line: 56, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1063, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1092, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 928, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 769, + method: '_load', + native: false + } + ], + timestamp: '2020-12-05T13:39:41.780Z' +} +{ + error: Error: Cannot find module 'bcrypt' + Require stack: + - /Users/Kwin/Documents/exchange/server/db/user.js + - /Users/Kwin/Documents/exchange/server/routes/user.js + - /Users/Kwin/Documents/exchange/server/index.js + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15) + at Function.Module._load (internal/modules/cjs/loader.js:725:27) + at Module.require (internal/modules/cjs/loader.js:952:19) + at require (internal/modules/cjs/helpers.js:88:18) + at Object. (/Users/Kwin/Documents/exchange/server/db/user.js:5:14) + at Module._compile (internal/modules/cjs/loader.js:1063:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10) + at Module.load (internal/modules/cjs/loader.js:928:32) + at Function.Module._load (internal/modules/cjs/loader.js:769:14) + at Module.require (internal/modules/cjs/loader.js:952:19) + at require (internal/modules/cjs/helpers.js:88:18) + at Object. (/Users/Kwin/Documents/exchange/server/routes/user.js:60:14) + at Module._compile (internal/modules/cjs/loader.js:1063:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10) + at Module.load (internal/modules/cjs/loader.js:928:32) + at Function.Module._load (internal/modules/cjs/loader.js:769:14) { + code: 'MODULE_NOT_FOUND', + requireStack: [ + '/Users/Kwin/Documents/exchange/server/db/user.js', + '/Users/Kwin/Documents/exchange/server/routes/user.js', + '/Users/Kwin/Documents/exchange/server/index.js' + ] + }, + level: 'error', + message: "uncaughtException: Cannot find module 'bcrypt'\n" + + 'Require stack:\n' + + '- /Users/Kwin/Documents/exchange/server/db/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/routes/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/index.js\n' + + "Error: Cannot find module 'bcrypt'\n" + + 'Require stack:\n' + + '- /Users/Kwin/Documents/exchange/server/db/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/routes/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:725:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/db/user.js:5:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/routes/user.js:60:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)', + stack: "Error: Cannot find module 'bcrypt'\n" + + 'Require stack:\n' + + '- /Users/Kwin/Documents/exchange/server/db/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/routes/user.js\n' + + '- /Users/Kwin/Documents/exchange/server/index.js\n' + + ' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:725:27)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/db/user.js:5:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)\n' + + ' at Module.require (internal/modules/cjs/loader.js:952:19)\n' + + ' at require (internal/modules/cjs/helpers.js:88:18)\n' + + ' at Object. (/Users/Kwin/Documents/exchange/server/routes/user.js:60:14)\n' + + ' at Module._compile (internal/modules/cjs/loader.js:1063:30)\n' + + ' at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)\n' + + ' at Module.load (internal/modules/cjs/loader.js:928:32)\n' + + ' at Function.Module._load (internal/modules/cjs/loader.js:769:14)', + exception: true, + date: 'Sat Dec 05 2020 08:44:14 GMT-0500 (Eastern Standard Time)', + process: { + pid: 84109, + uid: 501, + gid: 20, + cwd: '/Users/Kwin/Documents/exchange/server', + execPath: '/usr/local/bin/node', + version: 'v14.15.1', + argv: [ + '/usr/local/bin/node', + '/Users/Kwin/Documents/exchange/server/index.js' + ], + memoryUsage: { + rss: 88616960, + heapTotal: 64106496, + heapUsed: 37146040, + external: 20119711, + arrayBuffers: 18567326 + } + }, + os: { + loadavg: [ 2.22412109375, 2.212890625, 2.455078125 ], + uptime: 939418 + }, + trace: [ + { + column: 15, + file: 'internal/modules/cjs/loader.js', + function: 'Module._resolveFilename', + line: 880, + method: '_resolveFilename', + native: false + }, + { + column: 27, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 725, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 952, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 88, + method: null, + native: false + }, + { + column: 14, + file: '/Users/Kwin/Documents/exchange/server/db/user.js', + function: null, + line: 5, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1063, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1092, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 928, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 769, + method: '_load', + native: false + }, + { + column: 19, + file: 'internal/modules/cjs/loader.js', + function: 'Module.require', + line: 952, + method: 'require', + native: false + }, + { + column: 18, + file: 'internal/modules/cjs/helpers.js', + function: 'require', + line: 88, + method: null, + native: false + }, + { + column: 14, + file: '/Users/Kwin/Documents/exchange/server/routes/user.js', + function: null, + line: 60, + method: null, + native: false + }, + { + column: 30, + file: 'internal/modules/cjs/loader.js', + function: 'Module._compile', + line: 1063, + method: '_compile', + native: false + }, + { + column: 10, + file: 'internal/modules/cjs/loader.js', + function: 'Module._extensions..js', + line: 1092, + method: '.js', + native: false + }, + { + column: 32, + file: 'internal/modules/cjs/loader.js', + function: 'Module.load', + line: 928, + method: 'load', + native: false + }, + { + column: 14, + file: 'internal/modules/cjs/loader.js', + function: 'Module._load', + line: 769, + method: '_load', + native: false + } + ], + timestamp: '2020-12-05T13:44:14.546Z' +} diff --git a/server/images/coins/golden_bitcoin.png b/server/images/coins/golden_bitcoin.png new file mode 100755 index 0000000..f835db1 Binary files /dev/null and b/server/images/coins/golden_bitcoin.png differ diff --git a/server/images/coins/golden_eth.png b/server/images/coins/golden_eth.png new file mode 100755 index 0000000..3ca8f27 Binary files /dev/null and b/server/images/coins/golden_eth.png differ diff --git a/server/images/coins/golden_eth1.jpg b/server/images/coins/golden_eth1.jpg new file mode 100755 index 0000000..b6c5098 Binary files /dev/null and b/server/images/coins/golden_eth1.jpg differ diff --git a/server/images/coins/golden_rial.png b/server/images/coins/golden_rial.png new file mode 100755 index 0000000..88978f6 Binary files /dev/null and b/server/images/coins/golden_rial.png differ diff --git a/server/images/coins/golden_tron.png b/server/images/coins/golden_tron.png new file mode 100755 index 0000000..e560381 Binary files /dev/null and b/server/images/coins/golden_tron.png differ diff --git a/server/index.js b/server/index.js new file mode 100755 index 0000000..3b2556d --- /dev/null +++ b/server/index.js @@ -0,0 +1,151 @@ +"use strict"; +exports.__esModule = true; +var express = require("express"); +var app = express(); +var session = require("express-session"); +var MongoStore = require("connect-mongo"); +var MongoStoreSession = MongoStore(session); +var bodyParser = require("body-parser"); +var cookieParser = require("cookie-parser"); +var helmet = require("helmet"); +var mongoose = require("mongoose"); +var useragent = require("express-useragent"); +var dotenv = require("dotenv"); +var config = dotenv.config(); +var priceStats_1 = require("./scripts/priceStats"); +var currenciesadder_1 = require("./scripts/currenciesadder"); +var localPriceScript = require("./scripts/localPriceScript"); +var dollarToRial_1 = require("./scripts/dollarToRial"); +var errorHandler_1 = require("./middlewares/errorHandler"); +var logger_1 = require("./api/logger"); +var csurf = require("csurf"); +var cors = require("cors"); +var spawn = require("child_process"); +var cron = require("node-cron"); +mongoose.Promise = global.Promise; +mongoose.connect(process.env.MONGO_DATABASE, { useNewUrlParser: true, useUnifiedTopology: true })["catch"](function (err) { + logger_1.logger.error(err); +}); +var mongooseDB = mongoose.connection; +mongoose.set('useCreateIndex', true); +mongoose.set('useFindAndModify', false); +// const path = require('path') +// app.use(express.static(path.join(__dirname, 'static'))) +var morgan = require("morgan"); +app.use(morgan(':remote-addr ":method :url HTTP/:http-version" :status :res[content-length] :response-time ":referrer" ":user-agent" ', { stream: new logger_1.LoggerStream() })); //, { "stream": loggerStream() }) +app.use(bodyParser.json()); +// app.use(bodyParser.raw({ type: 'application/octet-stream' })) +app.use(bodyParser.urlencoded({ extended: false })); +app.use(cookieParser()); +app.use(cors({ credentials: true, origin: ['http://localhost:3000', 'http://localhost'] })); +app.use(useragent.express()); +app.use(helmet()); +app.set('trust proxy', true); +var sess = { + secret: process.env.SESSION_SECRET, + resave: false, + proxy: true, + saveUninitialized: true, + rolling: true, + SameSite: true, + name: 'sessionId', + cookie: { + // secure: true, + httpOnly: true, + // domain:, + path: '/', + maxAge: 6000000 + }, + store: new MongoStoreSession({ mongooseConnection: mongooseDB }) +}; +if (app.get('env') === 'production') { + app.set('trust proxy', 1); // trust first proxy + //sess.cookie.secure = true // serve secure cookies +} +var http = require("http"); +var server = http.createServer(app); +var socket_1 = require("./api/socket"); +var sio = socket_1.startIo(server); +var onlineLoginUsers = socket_1.getonlineLoginUsers(); +//import { rateLimiterMiddleware } from './middlewares/preventBruteForce' +// import * as sharedsession from 'express-socket.io-session' +var sharedsession = require("express-socket.io-session"); +var sessionMiddleware = session(sess); +app.use(sessionMiddleware); +onlineLoginUsers.use(sharedsession(sessionMiddleware, { autoSave: true })); +// onlineLoginUsers.use(function(socket, next){ +// sessionMiddleware(socket.client.request, socket.client.request.res, next); +// }); +var service_1 = require("./routes/service"); +var user_1 = require("./routes/user"); +var auth_1 = require("./routes/auth"); +var admin_1 = require("./routes/admin"); +var wallet_1 = require("./routes/wallet"); +var tickets_1 = require("./routes/tickets"); +app.use('/service', service_1.serviceRoutes); +app.use('/user', user_1.userRoutes); +app.use('/auth', auth_1.authRoutes); +app.use('/admin', admin_1.adminRoutes); +app.use('/tickets', tickets_1.ticketRoutes); +app.use('/wallet', wallet_1.walletRoutes); +//localHourlySetPrice() +//dailyStatsOfOrders() +var dbBackupTask = cron.schedule('59 23 * * *', function () { + var backupProcessTrudesk = spawn.spawn('mongodump', [ + '--db=trudesk', + '--archive=./trudeskDB', + '--gzip' + ]); + var backupProcessExchange = spawn.spawn('mongodump', [ + '--db=exchange', + '--archive=./exchangeDB', + '--gzip' + ]); + backupProcessTrudesk.on('exit', function (code, signal) { + if (code) + console.log('Backup process exited with code ', code); + else if (signal) + console.error('Backup process was killed with singal ', signal); + else + console.log('Successfully backedup the database'); + }); + backupProcessExchange.on('exit', function (code, signal) { + if (code) + console.log('Backup process exited with code ', code); + else if (signal) + console.error('Backup process was killed with singal ', signal); + else + console.log('Successfully backedup the database'); + }); +}, null); +var restoreProcess = spawn.spawn('mongorestore', ['trudesk/trudesk']); +restoreProcess.on('exit', function (code, signal) { + if (code) + console.log('Backup process exited with code ', code); + else if (signal) + console.error('Backup process was killed with singal ', signal); + else + console.log('Successfully backedup the database'); +}); +currenciesadder_1.curreniesAdder(); +priceStats_1.continuesStatsOfOrders(); +dollarToRial_1.addDollarPrice(); +// continuesStatsOfOrders() +// setInterval(continuesStatsOfOrders, 1000*60*1); +// app.use(rateLimiterMiddleware) +app.use(csurf()); +app.use(errorHandler_1["default"]); +/** + * Start Express server. + */ +localPriceScript.localHourlySetPrice(); +localPriceScript.localDailySetPrice(); +localPriceScript.localWeeklySetPrice(); +localPriceScript.localMonthlySetPrice(); +localPriceScript.localYearlySetPrice(); +var port = 3001; +var myServer = server.listen(port, function () { + console.log(" App is running at http://localhost:%d in %s mode", port, app.get("env")); + console.log(" Press CTRL-C to stop\n"); +}); +exports["default"] = myServer; diff --git a/server/index.ts b/server/index.ts new file mode 100755 index 0000000..4d59bfc --- /dev/null +++ b/server/index.ts @@ -0,0 +1,186 @@ +import * as express from 'express'; +const app = express(); + +import * as session from 'express-session'; +import * as MongoStore from 'connect-mongo'; +const MongoStoreSession = MongoStore(session) +import * as bodyParser from 'body-parser'; +import * as cookieParser from 'cookie-parser'; +import * as helmet from 'helmet'; +import * as mongoose from 'mongoose'; +import * as useragent from 'express-useragent'; +import * as dotenv from 'dotenv'; +const config = dotenv.config(); +import {continuesStatsOfOrders} from './scripts/priceStats' +import { curreniesAdder} from './scripts/currenciesadder' +import * as localPriceScript from './scripts/localPriceScript' + +import {addDollarPrice } from './scripts/dollarToRial' +import errorHandler from './middlewares/errorHandler' +import { logger, LoggerStream } from './api/logger'; +import * as csurf from 'csurf'; +import * as cors from 'cors'; +import * as spawn from 'child_process' +import * as cron from 'node-cron' + +mongoose.Promise = global.Promise; +mongoose.connect(process.env.MONGO_DATABASE, { useNewUrlParser: true, useUnifiedTopology: true }) + .catch((err) => { + logger.error(err) + }) +const mongooseDB = mongoose.connection +mongoose.set('useCreateIndex', true) +mongoose.set('useFindAndModify', false) + +// const path = require('path') +// app.use(express.static(path.join(__dirname, 'static'))) + +import * as morgan from 'morgan' +app.use(morgan(':remote-addr ":method :url HTTP/:http-version" :status :res[content-length] :response-time ":referrer" ":user-agent" ', { stream: new LoggerStream() }))//, { "stream": loggerStream() }) + +app.use(bodyParser.json()) +// app.use(bodyParser.raw({ type: 'application/octet-stream' })) +app.use(bodyParser.urlencoded({ extended: false })) +app.use(cookieParser()); + + +app.use(cors({ credentials: true, origin: ['http://localhost:3000', 'http://localhost'] })) +app.use(useragent.express()) +app.use(helmet()) +app.set('trust proxy', true) +var sess = { + secret: process.env.SESSION_SECRET, + resave: false, + proxy: true, + saveUninitialized: true, + rolling: true, + SameSite: true, + name: 'sessionId', + cookie: { + // secure: true, + httpOnly: true, + // domain:, + path: '/', + maxAge: 6000000 + }, + store: new MongoStoreSession({ mongooseConnection: mongooseDB }) +} +if (app.get('env') === 'production') { + app.set('trust proxy', 1) // trust first proxy + //sess.cookie.secure = true // serve secure cookies +} +import * as http from 'http' +const server = http.createServer(app) +import { startIo, getonlineLoginUsers } from './api/socket' +var sio = startIo(server) +const onlineLoginUsers = getonlineLoginUsers() + +//import { rateLimiterMiddleware } from './middlewares/preventBruteForce' + +// import * as sharedsession from 'express-socket.io-session' +var sharedsession = require("express-socket.io-session"); +var sessionMiddleware = session(sess) +app.use(sessionMiddleware) +onlineLoginUsers.use(sharedsession(sessionMiddleware, { autoSave: true })) +// onlineLoginUsers.use(function(socket, next){ +// sessionMiddleware(socket.client.request, socket.client.request.res, next); +// }); + +import { serviceRoutes } from './routes/service' +import { userRoutes } from './routes/user' +import { authRoutes } from './routes/auth' +import { adminRoutes } from './routes/admin' +import { walletRoutes } from './routes/wallet' +import { ticketRoutes } from './routes/tickets'; +app.use('/service', serviceRoutes) +app.use('/user', userRoutes) +app.use('/auth', authRoutes) +app.use('/admin', adminRoutes) +app.use('/tickets', ticketRoutes) +app.use('/wallet', walletRoutes) + +//localHourlySetPrice() +//dailyStatsOfOrders() + +let dbBackupTask = cron.schedule('59 23 * * *', () => { + let backupProcessTrudesk = spawn.spawn('mongodump', [ + '--db=trudesk', + '--archive=./trudeskDB', + '--gzip' + ]); + let backupProcessExchange = spawn.spawn('mongodump', [ + '--db=exchange', + '--archive=./exchangeDB', + '--gzip' + ]); + backupProcessTrudesk.on('exit', (code, signal) => { + if(code) + console.log('Backup process exited with code ', code); + else if (signal) + console.error('Backup process was killed with singal ', signal); + else + console.log('Successfully backedup the database') + }); + backupProcessExchange.on('exit', (code, signal) => { + if(code) + console.log('Backup process exited with code ', code); + else if (signal) + console.error('Backup process was killed with singal ', signal); + else + console.log('Successfully backedup the database') + }); +},null); + + + const restoreProcess = spawn.spawn('mongorestore',[ 'trudesk/trudesk']); + + + restoreProcess.on('exit', (code, signal) => { + if(code) + console.log('Backup process exited with code ', code); + else if (signal) + console.error('Backup process was killed with singal ', signal); + else + console.log('Successfully backedup the database') + }); + + +curreniesAdder() +continuesStatsOfOrders() + + +addDollarPrice() + +// continuesStatsOfOrders() + +// setInterval(continuesStatsOfOrders, 1000*60*1); + + + +// app.use(rateLimiterMiddleware) +app.use(csurf()) +app.use(errorHandler) +/** + * Start Express server. + */ + + +localPriceScript.localHourlySetPrice() +localPriceScript.localDailySetPrice() +localPriceScript.localWeeklySetPrice() +localPriceScript.localMonthlySetPrice() +localPriceScript.localYearlySetPrice() + +const port = 3001 +const myServer = server.listen(port, () => { + console.log( + " App is running at http://localhost:%d in %s mode", + port, + app.get("env") + ); + console.log(" Press CTRL-C to stop\n"); +}); + + + +export default myServer; \ No newline at end of file diff --git a/server/middlewares/TRON.js b/server/middlewares/TRON.js new file mode 100755 index 0000000..84b35cb --- /dev/null +++ b/server/middlewares/TRON.js @@ -0,0 +1,112 @@ +"use strict"; +exports.__esModule = true; +exports.TRONTransferFrom = exports.validateByTXId = void 0; +var tronWeb = require("tronweb"); +var currencies_1 = require("../db/currencies"); +var user_1 = require("../db/user"); +var _ = require("lodash"); +// export function TRONTransferTo(userId, systemAccount, userAccount, privateKey, amount){ +// User.findOne({ _id : userId }) +// .then((user) => { +// if(user && user._id.toString() === userId.toString()){ +// const HttpProvider = tronWeb.providers.HttpProvider; +// const fullNode = new HttpProvider("https://api.shasta.trongrid.io"); +// const solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); +// const eventServer = new HttpProvider("https://api.shasta.trongrid.io"); +// const tw = new tronWeb(fullNode,solidityNode,eventServer,privateKey); +// const am = amount * 1000000 +// tw.trx.getAccount(userAccount.toString()).then((usrAcc) =>{ +// if(usrAcc){ +// tw.trx.sendTransaction(systemAccount, am) +// }else{ +// const error = "user Tron Account not fount" +// console.log("Error in TRONTransferTo : ", error) +// } +// }) +// .catch((err) => console.log(err)) +// }else{ +// const error = 'user not fount' +// console.log('Error in TRONTransferTo : ', error) +// } +// }) +// .catch((err) => console.log('Error in TRONTransferTo : ', err)) +// } +function validateByTXId(userId, hash) { + var systemPrivateKey = '4a8f251556d19ab6625c0cc012a3c534bf978e6a099d0bb8f42d6539579a10c5'; + user_1.User.findOne({ _id: userId }) + .then(function (user) { + if (user && user._id.toString() === userId.toString()) { + var HttpProvider = tronWeb.providers.HttpProvider; + var fullNode = new HttpProvider("https://api.shasta.trongrid.io"); + var solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); + var eventServer = new HttpProvider("https://api.shasta.trongrid.io"); + var TronWeb = new tronWeb(fullNode, solidityNode, eventServer, systemPrivateKey); + console.log("here : ", TronWeb); + TronWeb.trx.getTransaction(hash.toString()) + .then(function (transaction) { + return transaction; + })["catch"](function (err) { throw (err); }); + } + else { + var error = 'user not fount'; + console.log('Error in TRONTransferTo : ', error); + throw (error); + } + }); +} +exports.validateByTXId = validateByTXId; +function TRONTransferFrom(userId, destAccount, am) { + var systemPrivateKey = '4a8f251556d19ab6625c0cc012a3c534bf978e6a099d0bb8f42d6539579a10c5'; + var tronId = undefined; + var amount = am * 1000000; + currencies_1.Currencies.findOne({ name: "TRON" }) + .then(function (curTRONObj) { + tronId = curTRONObj._id; + user_1.User.findOne({ _id: userId }) + .then(function (user) { + if (user && user._id.toString() === userId.toString()) { + var userTronWal_1 = _.find(user.wallet, function (e) { return e.currency.toString() === tronId.toString(); }); + if (userTronWal_1.value >= am) { + var HttpProvider = tronWeb.providers.HttpProvider; + var fullNode = new HttpProvider("https://api.shasta.trongrid.io"); + var solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); + var eventServer = new HttpProvider("https://api.shasta.trongrid.io"); + var TronWeb = new tronWeb(fullNode, solidityNode, eventServer, systemPrivateKey); + TronWeb.trx.sendTransaction(destAccount, amount) + .then(function (transaction) { + if (transaction.result) { + userTronWal_1.value = userTronWal_1.value - am; + user.save(); + console.log("Transaction to destination account done. "); + } + else { + var error = "Transaciton Failed"; + console.log(error); + throw (error); + } + })["catch"](function (err) { + console.log("Error : ", err); + throw (err); + }); + } + else { + var error = "user does not have enough TRON currency in his/her wallet"; + console.log(error); + throw (error); + } + } + else { + var error = 'user not fount'; + console.log('Error in TRONTransferTo : ', error); + throw (error); + } + })["catch"](function (err) { + console.log('Error in TRONTransferTo : ', err); + throw (err); + }); + })["catch"](function (err) { + console.log(err); + throw (err); + }); +} +exports.TRONTransferFrom = TRONTransferFrom; diff --git a/server/middlewares/TRON.ts b/server/middlewares/TRON.ts new file mode 100755 index 0000000..b54b041 --- /dev/null +++ b/server/middlewares/TRON.ts @@ -0,0 +1,132 @@ +import * as tronWeb from 'tronweb' +import { Currencies } from '../db/currencies'; +import { User } from '../db/user' +import * as _ from 'lodash' + +// export function TRONTransferTo(userId, systemAccount, userAccount, privateKey, amount){ + +// User.findOne({ _id : userId }) +// .then((user) => { + +// if(user && user._id.toString() === userId.toString()){ +// const HttpProvider = tronWeb.providers.HttpProvider; +// const fullNode = new HttpProvider("https://api.shasta.trongrid.io"); +// const solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); +// const eventServer = new HttpProvider("https://api.shasta.trongrid.io"); +// const tw = new tronWeb(fullNode,solidityNode,eventServer,privateKey); +// const am = amount * 1000000 +// tw.trx.getAccount(userAccount.toString()).then((usrAcc) =>{ +// if(usrAcc){ +// tw.trx.sendTransaction(systemAccount, am) + +// }else{ +// const error = "user Tron Account not fount" +// console.log("Error in TRONTransferTo : ", error) +// } + +// }) +// .catch((err) => console.log(err)) + + +// }else{ +// const error = 'user not fount' +// console.log('Error in TRONTransferTo : ', error) +// } + +// }) +// .catch((err) => console.log('Error in TRONTransferTo : ', err)) + +// } + +export function validateByTXId(userId, hash){ + const systemPrivateKey = '4a8f251556d19ab6625c0cc012a3c534bf978e6a099d0bb8f42d6539579a10c5' + User.findOne({ _id : userId }) + .then((user) => { + if(user && user._id.toString() === userId.toString()){ + + const HttpProvider = tronWeb.providers.HttpProvider; + const fullNode = new HttpProvider("https://api.shasta.trongrid.io"); + const solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); + const eventServer = new HttpProvider("https://api.shasta.trongrid.io"); + const TronWeb = new tronWeb(fullNode,solidityNode,eventServer,systemPrivateKey); + console.log("here : ", TronWeb) + TronWeb.trx.getTransaction(hash.toString()) + .then((transaction) => { + return transaction + }) + .catch((err) => {throw(err)}) + + }else{ + const error = 'user not fount' + console.log('Error in TRONTransferTo : ', error) + throw(error) + } + }) + +} + + +export function TRONTransferFrom(userId, destAccount, am){ + const systemPrivateKey = '4a8f251556d19ab6625c0cc012a3c534bf978e6a099d0bb8f42d6539579a10c5' + let tronId = undefined + const amount = am * 1000000 + + Currencies.findOne({name : "TRON"}) + .then((curTRONObj) => { + tronId = curTRONObj._id + User.findOne({ _id : userId }) + .then((user) => { + if(user && user._id.toString() === userId.toString()){ + + let userTronWal = _.find(user.wallet, (e) => e.currency.toString() === tronId.toString()) + if(userTronWal.value >= am){ + + const HttpProvider = tronWeb.providers.HttpProvider; + const fullNode = new HttpProvider("https://api.shasta.trongrid.io"); + const solidityNode = new HttpProvider("https://api.shasta.trongrid.io"); + const eventServer = new HttpProvider("https://api.shasta.trongrid.io"); + const TronWeb = new tronWeb(fullNode,solidityNode,eventServer,systemPrivateKey); + TronWeb.trx.sendTransaction(destAccount, amount) + .then((transaction) => { + + if(transaction.result){ + + userTronWal.value = userTronWal.value - am + user.save() + console.log("Transaction to destination account done. ") + + }else{ + const error = "Transaciton Failed" + console.log(error) + throw(error) + } + + }) + .catch((err) => { + console.log("Error : ", err) + throw(err) + }) + + }else{ + const error = "user does not have enough TRON currency in his/her wallet" + console.log(error) + throw(error) + } + + }else{ + const error = 'user not fount' + console.log('Error in TRONTransferTo : ', error) + throw(error) + } + }) + .catch((err) => { + console.log('Error in TRONTransferTo : ', err) + throw(err) + }) + + }) + .catch((err) => { + console.log(err) + throw(err) + }) +} \ No newline at end of file diff --git a/server/middlewares/auth.js b/server/middlewares/auth.js new file mode 100755 index 0000000..00931e8 --- /dev/null +++ b/server/middlewares/auth.js @@ -0,0 +1,24 @@ +"use strict"; +exports.__esModule = true; +exports.isAdmin = exports.isAuthorized = void 0; +var myError_1 = require("../api/myError"); +function isAuthorized(req, res, next) { + if (!req.session.userId) { + var error = new myError_1["default"]('unauthorized cookie', 401, 1, 'خطا رخ داد!', 'لطفا برای ادامه لاگین کنید!'); + next(error); + } + else { + next(); + } +} +exports.isAuthorized = isAuthorized; +function isAdmin(req, res, next) { + if (!req.session.adminId) { + var error = new myError_1["default"]('unauthorized', 401, 3, 'خطا رخ داد!', 'شما اجازه دسترسی ندارید!'); + next(error); + } + else { + next(); + } +} +exports.isAdmin = isAdmin; diff --git a/server/middlewares/auth.ts b/server/middlewares/auth.ts new file mode 100755 index 0000000..61d84e9 --- /dev/null +++ b/server/middlewares/auth.ts @@ -0,0 +1,31 @@ +import myError from '../api/myError' + +export function isAuthorized (req, res, next) { + if (!req.session.userId) { + const error = new myError( + 'unauthorized cookie', + 401, + 1, + 'خطا رخ داد!', + 'لطفا برای ادامه لاگین کنید!' + ) + next(error) + } else { + next() + } +} + +export function isAdmin (req, res, next) { + if (!req.session.adminId) { + const error = new myError( + 'unauthorized', + 401, + 3, + 'خطا رخ داد!', + 'شما اجازه دسترسی ندارید!' + ) + next(error) + } else { + next() + } +} diff --git a/server/middlewares/errorHandler.js b/server/middlewares/errorHandler.js new file mode 100755 index 0000000..ab440c4 --- /dev/null +++ b/server/middlewares/errorHandler.js @@ -0,0 +1,33 @@ +"use strict"; +exports.__esModule = true; +var logger_1 = require("../api/logger"); +exports["default"] = (function (err, req, res, next) { + if (err.statusCode) { + logger_1.logger.warn(err.statusCode + ' - ' + err.messageEnglish); + } + else { + logger_1.logger.warn(err); + } + if (!err.statusCode) { + logger_1.logger.error(err.stack); + res.status(500).json({ + actionName: 'Intrnal Error', + metaData: { + title: 'خطا در سرور', + message: 'لطفا لحظاتی بعد دوباره اقدام کنید.', + messageEnglish: 'something bad happened!' + } + }); + } + else { + res.status(err.statusCode).send({ + actionName: 'Error', + metaData: { + title: err.title, + clientErrorCode: err.clientCode, + message: err.clientMessage, + messageEnglish: err.messageEnglish + } + }); + } +}); diff --git a/server/middlewares/errorHandler.ts b/server/middlewares/errorHandler.ts new file mode 100755 index 0000000..0a749b7 --- /dev/null +++ b/server/middlewares/errorHandler.ts @@ -0,0 +1,29 @@ +import { logger } from '../api/logger' +export default (err, req, res, next) => { + if(err.statusCode) { + logger.warn(err.statusCode + ' - ' + err.messageEnglish) + } else { + logger.warn(err) + } + if (!err.statusCode) { + logger.error(err.stack) + res.status(500).json({ + actionName: 'Intrnal Error', + metaData: { + title: 'خطا در سرور', + message: 'لطفا لحظاتی بعد دوباره اقدام کنید.', + messageEnglish: 'something bad happened!' + } + }) + } else { + res.status(err.statusCode).send({ + actionName: 'Error', + metaData: { + title: err.title, + clientErrorCode: err.clientCode, + message: err.clientMessage, + messageEnglish: err.messageEnglish + } + }) + } + } \ No newline at end of file diff --git a/server/middlewares/offers.ts b/server/middlewares/offers.ts new file mode 100755 index 0000000..ab1a79c --- /dev/null +++ b/server/middlewares/offers.ts @@ -0,0 +1,4 @@ + +// export const evaluateOffer = (offerArray)=>{ + +// } diff --git a/server/middlewares/preventBruteForce.js b/server/middlewares/preventBruteForce.js new file mode 100755 index 0000000..c5ae067 --- /dev/null +++ b/server/middlewares/preventBruteForce.js @@ -0,0 +1,126 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.preventBruteForce = exports.rateLimiterMiddleware = exports.globalRedisClient = void 0; +var myError_1 = require("../api/myError"); +var rateLimiteFlexible = require("rate-limiter-flexible"); +var redis = require("redis"); +exports.globalRedisClient = redis.createClient({ + port: process.env.REDIS_PORT, + host: process.env.REDIS_HOST, + enable_offline_queue: false +}); +exports.globalRedisClient.on('connect', function (err) { + console.log('Redis-server is connected'); +}); +exports.globalRedisClient.on('error', function (err) { + console.log('Error ' + err); +}); +var RateLimiterRedis = rateLimiteFlexible.RateLimiterRedis; +var maxWrongAttemptsByIPperDay = 100; +var maxConsecutiveFailsByUsernameAndIP = 5; +var rateLimiterRedis = new RateLimiterRedis({ + storeClient: exports.globalRedisClient, + points: maxWrongAttemptsByIPperDay, + duration: 1000, + blockDuration: 60 * 60 // Per second +}); +exports.rateLimiterMiddleware = function (req, res, next) { + rateLimiterRedis.consume(req.ip) + .then(function () { + next(); + })["catch"](function (err) { + err.statusCode = 429; + err.clientCode = 11; + err.clientMessage = 'درخواست بیش از حد انجام داده اید! بعد از یک ساعت دیگر دوباره اقدام بفرمایید!'; + err.messageEnglish = 'Too Many Requests'; + next(err); + }); +}; +var limiterSlowBruteByIP = new RateLimiterRedis({ + storeClient: exports.globalRedisClient, + keyPrefix: 'login_fail_ip_per_day', + points: maxWrongAttemptsByIPperDay, + duration: 60 * 60 * 24, + blockDuration: 60 * 60 * 24 // Block for 1 day, if 100 wrong attempts per day +}); +var limiterConsecutiveFailsByUsernameAndIP = new RateLimiterRedis({ + storeClient: exports.globalRedisClient, + keyPrefix: 'login_fail_consecutive_username_and_ip', + points: maxConsecutiveFailsByUsernameAndIP, + duration: 60 * 60, + blockDuration: 60 * 60 // Block for 1 hour +}); +var getUsernameIPkey = function (username, ip) { return username + "_" + ip; }; +function preventBruteForce(req, res, next) { + return __awaiter(this, void 0, void 0, function () { + var ipAddr, usernameIPkey, _a, resUsernameAndIP, resSlowByIP, retrySecs, error; + return __generator(this, function (_b) { + switch (_b.label) { + case 0: + ipAddr = req.ip; + usernameIPkey = getUsernameIPkey(req.body.email, ipAddr); + return [4 /*yield*/, Promise.all([ + limiterConsecutiveFailsByUsernameAndIP.get(usernameIPkey), + limiterSlowBruteByIP.get(ipAddr) + ])]; + case 1: + _a = _b.sent(), resUsernameAndIP = _a[0], resSlowByIP = _a[1]; + retrySecs = 0; + // Check if IP or Username + IP is already blocked + if (resSlowByIP !== null && resSlowByIP.consumedPoints > maxWrongAttemptsByIPperDay) { + retrySecs = Math.round(resSlowByIP.msBeforeNext / 1000) || 1; + } + else if (resUsernameAndIP !== null && resUsernameAndIP.consumedPoints > maxConsecutiveFailsByUsernameAndIP) { + retrySecs = Math.round(resUsernameAndIP.msBeforeNext / 1000) || 1; + } + if (retrySecs > 0) { + error = new myError_1["default"]("Too many requests for user " + req.body.email + " with ip " + ipAddr, 1, 429, 'درخواست بیش از حد انجام داده اید! بعد از یک ساعت دیگر دوباره اقدام بفرمایید!', 'خطا رخ داد'); + next(error); + } + else { + limiterConsecutiveFailsByUsernameAndIP.consume(usernameIPkey); + limiterSlowBruteByIP.consume(ipAddr); + next(); + } + return [2 /*return*/]; + } + }); + }); +} +exports.preventBruteForce = preventBruteForce; diff --git a/server/middlewares/preventBruteForce.ts b/server/middlewares/preventBruteForce.ts new file mode 100755 index 0000000..e7be90f --- /dev/null +++ b/server/middlewares/preventBruteForce.ts @@ -0,0 +1,91 @@ +import myError from '../api/myError' +import * as rateLimiteFlexible from 'rate-limiter-flexible' +import * as redis from 'redis' + +export const globalRedisClient = redis.createClient({ + port: process.env.REDIS_PORT, + host: process.env.REDIS_HOST, + enable_offline_queue: false +}) +globalRedisClient.on('connect', function (err) { + console.log('Redis-server is connected') +}) +globalRedisClient.on('error', function (err) { + console.log('Error ' + err) +}) + +const RateLimiterRedis = rateLimiteFlexible.RateLimiterRedis + + + + + +const maxWrongAttemptsByIPperDay = 100 +const maxConsecutiveFailsByUsernameAndIP = 5 + +const rateLimiterRedis = new RateLimiterRedis({ + storeClient: globalRedisClient, + points: maxWrongAttemptsByIPperDay, // Number of points + duration: 1000, // Per second, + blockDuration: 60 * 60 // Per second +}) + +export const rateLimiterMiddleware = (req, res, next) => { + rateLimiterRedis.consume(req.ip) + .then(() => { + next() + }) + .catch(err => { + err.statusCode = 429 + err.clientCode = 11 + err.clientMessage = 'درخواست بیش از حد انجام داده اید! بعد از یک ساعت دیگر دوباره اقدام بفرمایید!' + err.messageEnglish = 'Too Many Requests' + next(err) + }) +} + +const limiterSlowBruteByIP = new RateLimiterRedis({ + storeClient: globalRedisClient, + keyPrefix: 'login_fail_ip_per_day', + points: maxWrongAttemptsByIPperDay, + duration: 60 * 60 * 24, + blockDuration: 60 * 60 * 24 // Block for 1 day, if 100 wrong attempts per day +}) + +const limiterConsecutiveFailsByUsernameAndIP = new RateLimiterRedis({ + storeClient: globalRedisClient, + keyPrefix: 'login_fail_consecutive_username_and_ip', + points: maxConsecutiveFailsByUsernameAndIP, + duration: 60 * 60, // Store number for 90 days since first fail + blockDuration: 60 * 60 // Block for 1 hour +}) + +const getUsernameIPkey = (username, ip) => `${username}_${ip}` + +export async function preventBruteForce (req, res, next) { + const ipAddr = req.ip + const usernameIPkey = getUsernameIPkey(req.body.email, ipAddr) + + const [resUsernameAndIP, resSlowByIP] = await Promise.all([ + limiterConsecutiveFailsByUsernameAndIP.get(usernameIPkey), + limiterSlowBruteByIP.get(ipAddr) + ]) + let retrySecs = 0 + + // Check if IP or Username + IP is already blocked + if (resSlowByIP !== null && resSlowByIP.consumedPoints > maxWrongAttemptsByIPperDay) { + retrySecs = Math.round(resSlowByIP.msBeforeNext / 1000) || 1 + } else if (resUsernameAndIP !== null && resUsernameAndIP.consumedPoints > maxConsecutiveFailsByUsernameAndIP) { + retrySecs = Math.round(resUsernameAndIP.msBeforeNext / 1000) || 1 + } + + if (retrySecs > 0) { + const error = new myError(`Too many requests for user ${req.body.email} with ip ${ipAddr}`, 1, 429, 'درخواست بیش از حد انجام داده اید! بعد از یک ساعت دیگر دوباره اقدام بفرمایید!', 'خطا رخ داد') + next(error) + } else { + limiterConsecutiveFailsByUsernameAndIP.consume(usernameIPkey) + limiterSlowBruteByIP.consume(ipAddr) + next() + } +} + diff --git a/server/middlewares/response.js b/server/middlewares/response.js new file mode 100755 index 0000000..8b3a8e5 --- /dev/null +++ b/server/middlewares/response.js @@ -0,0 +1,7 @@ +"use strict"; +exports.__esModule = true; +function successRes(res, message, data, metaData, statusCode) { + if (statusCode === void 0) { statusCode = 200; } + return res.status(statusCode).json({ success: true, message: message, data: data, metaData: metaData }); +} +exports["default"] = successRes; diff --git a/server/middlewares/response.ts b/server/middlewares/response.ts new file mode 100755 index 0000000..19f4fde --- /dev/null +++ b/server/middlewares/response.ts @@ -0,0 +1,5 @@ +export default function successRes (res, message?: string, data?, metaData?, statusCode = 200) { + return res.status(statusCode).json({ success: true, message: message, data: data, metaData: metaData }) +} + + diff --git a/server/middlewares/tryCatch.js b/server/middlewares/tryCatch.js new file mode 100755 index 0000000..5bcc917 --- /dev/null +++ b/server/middlewares/tryCatch.js @@ -0,0 +1,63 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +function tryCatch(cb) { + var _this = this; + return function (req, res, next) { return __awaiter(_this, void 0, void 0, function () { + var err_1; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + _a.trys.push([0, 2, , 3]); + return [4 /*yield*/, cb(req, res, next) + // next() + ]; + case 1: + _a.sent(); + return [3 /*break*/, 3]; + case 2: + err_1 = _a.sent(); + console.log(err_1); + next(err_1); + return [3 /*break*/, 3]; + case 3: return [2 /*return*/]; + } + }); + }); }; +} +exports["default"] = tryCatch; diff --git a/server/middlewares/tryCatch.ts b/server/middlewares/tryCatch.ts new file mode 100755 index 0000000..bf8787b --- /dev/null +++ b/server/middlewares/tryCatch.ts @@ -0,0 +1,12 @@ +export default function tryCatch (cb) { + return async (req, res, next) => { + try { + await cb(req, res, next) + // next() + } catch (err) { + console.log(err) + next(err) + } + } +} + diff --git a/server/middlewares/tryCtach.js b/server/middlewares/tryCtach.js new file mode 100755 index 0000000..5bcc917 --- /dev/null +++ b/server/middlewares/tryCtach.js @@ -0,0 +1,63 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +function tryCatch(cb) { + var _this = this; + return function (req, res, next) { return __awaiter(_this, void 0, void 0, function () { + var err_1; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + _a.trys.push([0, 2, , 3]); + return [4 /*yield*/, cb(req, res, next) + // next() + ]; + case 1: + _a.sent(); + return [3 /*break*/, 3]; + case 2: + err_1 = _a.sent(); + console.log(err_1); + next(err_1); + return [3 /*break*/, 3]; + case 3: return [2 /*return*/]; + } + }); + }); }; +} +exports["default"] = tryCatch; diff --git a/server/middlewares/upload.js b/server/middlewares/upload.js new file mode 100755 index 0000000..bf08eda --- /dev/null +++ b/server/middlewares/upload.js @@ -0,0 +1,60 @@ +"use strict"; +exports.__esModule = true; +exports.uploadEdit = exports.uploadTemp = exports.editStorage = void 0; +var multer = require("multer"); +var path = require("path"); +var mongodb = require("mongodb"); +var ObjectId = mongodb.ObjectId; +var TempStorage = multer.diskStorage({ + destination: function (req, file, cb) { + cb(null, 'images/temp'); + }, + filename: function (req, file, cb) { + var name = new ObjectId(); + var ext = path.extname(file.originalname); + cb(null, name + ext); + } +}); +exports.editStorage = multer.diskStorage({ + destination: function (req, file, cb) { + cb(null, 'images/temp'); + }, + filename: function (req, file, cb) { + // const name = uuid4() + // const ext = path.extname(file.originalname) + cb(null, file.originalname); + } +}); +exports.uploadTemp = multer({ + storage: TempStorage, + limits: { + fileSize: 1024 * 1024, + files: 1, + fields: 0 + }, + fileFilter: function (req, file, callback) { + var ext = path.extname(file.originalname); + if (ext !== '.png' && ext !== '.jpg' && ext !== '.jpeg') { + return callback(new Error('Only images are allowed')); + } + callback(null, true); + } +}).single('image'); +exports.uploadEdit = multer({ + storage: exports.editStorage, + fileFilter: function (req, file, callback) { + var ext = path.extname(file.originalname); + if (ext !== '.png' && ext !== '.jpg' && ext !== '.jpeg') { + return callback(new Error('Only images are allowed')); + } + callback(null, true); + }, + limits: { + fileSize: 1024 * 1024, + files: 10, + fields: 2 + } +}).fields([ + { name: 'images[]', maxCount: 5 }, + { name: 'image', maxCount: 1 } +]); diff --git a/server/middlewares/upload.ts b/server/middlewares/upload.ts new file mode 100755 index 0000000..b4fffe7 --- /dev/null +++ b/server/middlewares/upload.ts @@ -0,0 +1,64 @@ + +import * as multer from 'multer' +import * as uuid4 from 'uuid4' +import * as path from 'path' +import * as mongodb from 'mongodb' +const ObjectId = mongodb.ObjectId + +var TempStorage = multer.diskStorage({ + destination: function (req, file, cb) { + cb(null, 'images/temp') + }, + filename: function (req, file, cb) { + const name = new ObjectId() + const ext = path.extname(file.originalname) + cb(null, name + ext) + } +}) + +export const editStorage = multer.diskStorage({ + destination: function (req, file, cb) { + cb(null, 'images/temp') + }, + filename: function (req, file, cb) { + // const name = uuid4() + // const ext = path.extname(file.originalname) + cb(null, file.originalname) + } +}) + +export const uploadTemp = multer({ + storage: TempStorage, + limits: { + fileSize: 1024 * 1024, + files: 1, + fields: 0 + }, + fileFilter: function (req, file, callback) { + var ext = path.extname(file.originalname) + if (ext !== '.png' && ext !== '.jpg' && ext !== '.jpeg') { + return callback(new Error('Only images are allowed')) + } + callback(null, true) + } +}).single('image') + +export const uploadEdit = multer({ + storage: editStorage, + fileFilter: function (req, file, callback) { + var ext = path.extname(file.originalname) + if (ext !== '.png' && ext !== '.jpg' && ext !== '.jpeg') { + return callback(new Error('Only images are allowed')) + } + callback(null, true) + }, + limits: { + fileSize: 1024 * 1024, + files: 10, + fields: 2 + } +}).fields([ + { name: 'images[]', maxCount: 5 }, + { name: 'image', maxCount: 1 } +]) + diff --git a/server/middlewares/validation.js b/server/middlewares/validation.js new file mode 100755 index 0000000..8ee1cdc --- /dev/null +++ b/server/middlewares/validation.js @@ -0,0 +1,1874 @@ +"use strict"; +exports.__esModule = true; +exports.validate = exports.userValidationRules = exports.numbersFormatter = exports.isValidMobilePhone = exports.isEmailValid = void 0; +var express_validator_1 = require("express-validator"); +var myError_1 = require("../api/myError"); +var lodash_1 = require("lodash"); +function isEmailValid(mail) { + var re = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; + return re.test(mail); +} +exports.isEmailValid = isEmailValid; +exports.isValidMobilePhone = function (phone) { + return phone.length === 11 && (phone[0] === '0' || phone[0] === '۰') && (phone[1] === '9' || phone[1] === '۹') && (/^\d+$/.test(phone) || /^\d+$/.test(numbersFormatter(phone, 'en'))); +}; +var isValidDate = function (d) { + return d instanceof Date && !isNaN(d.getTime()); +}; +// A helper for converting non-persian numbers to persian ones. +var arabicNumbers = ["١", "٢", "٣", "٤", "٥", "٦", "٧", "٨", "٩", "٠"], persianNumbers = ["۱", "۲", "۳", "۴", "۵", "۶", "۷", "۸", "۹", "۰"], englishNumbers = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0"]; +function searchAndReplaceInNumbers(value, source, target) { + for (var i = 0, len = target.length; i < len; i++) { + value = value.replace(new RegExp(source[i], "g"), target[i]); + } + return value; +} +function numbersFormatter(value, to) { + if (to === void 0) { to = "fa"; } + value = typeof value === "number" ? String(value) : value; + if (!value) + return value; + var output = value; + if (to === "fa") { + output = searchAndReplaceInNumbers(output, englishNumbers, persianNumbers); + output = searchAndReplaceInNumbers(output, arabicNumbers, persianNumbers); + } + else if (to === "en") { + output = searchAndReplaceInNumbers(output, persianNumbers, englishNumbers); + output = searchAndReplaceInNumbers(output, arabicNumbers, englishNumbers); + } + return output; +} +exports.numbersFormatter = numbersFormatter; +var mongo = require("mongodb"); +var ObjectId = mongo.ObjectID; +exports.userValidationRules = function (type, input) { + /// ///////////////////////////////////////// + /// //////// body ////////////////////////// + /// ///////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// user /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + // ----------- SKH ---------------- + // ------- body -------- + if (type === 'body' && input === 'curGivenId') { + return [ + express_validator_1.body('curGivenId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenId is required!', clientMessage: 'شناسه ارز پیشنهادی مورد نیاز است!' }), + express_validator_1.body('curGivenId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenId is not valid!', clientMessage: 'شناسه ارز پیشنهادی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'curGivenIdOp') { + return [ + express_validator_1.body('curGivenIdOp').optional().isMongoId() + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenIdOp is not valid!', clientMessage: 'شناسه ارز پیشنهادی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'curGivenVal') { + return [ + express_validator_1.body('curGivenVal').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenVal is required!', clientMessage: 'مقدار ارز پیشنهادی مورد نیاز است!' }), + express_validator_1.body('curGivenVal').isNumeric().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenVal is not valid!', clientMessage: 'مقدار ارز پیشنهادی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'curGivenValOp') { + return [ + express_validator_1.body('curGivenValOp').optional() + .custom(function (v) { + if (!v.from && !v.to) { + return false; + } + else if (v.from && Number(v.from <= 0)) { + return false; + } + else if (v.to && Number(v.to <= 0)) { + return false; + } + else { + return true; + } + }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenValOp is not valid!', clientMessage: 'مقدار ارز پیشنهادی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'curTakenId') { + return [ + express_validator_1.body('curTakenId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenId is required!', clientMessage: 'شناسه ارز درخواستی مورد نیاز است!' }), + express_validator_1.body('curTakenId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenId is not valid!', clientMessage: 'شناسه ارز درخواستی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'curTakenIdOp') { + return [ + express_validator_1.body('curTakenIdOp').optional().isMongoId() + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenIdOp is not valid!', clientMessage: 'شناسه ارز درخواستی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'curTakenVal') { + return [ + express_validator_1.body('curTakenVal').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenVal is required!', clientMessage: 'مقدار ارز درخواستی مورد نیاز است!' }), + express_validator_1.body('curTakenVal').isNumeric().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenVal is not valid!', clientMessage: 'مقدار ارز درخواستی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'curTakenValOp') { + return [ + express_validator_1.body('curTakenValOp').optional() + .custom(function (v) { + if (!v.from && !v.to) { + return false; + } + else if (v.from && Number(v.from <= 0)) { + return false; + } + else if (v.to && Number(v.to <= 0)) { + return false; + } + else { + return true; + } + }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenValOp is not valid!', clientMessage: 'مقدار ارز پیشنهادی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'expDate') { + return [ + express_validator_1.body('expDate').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'expDate is required!', clientMessage: 'تاریخ انقضای پیشنهاد مورد نیاز است!' }), + express_validator_1.body('expDate').isDate().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'expDate is not valid!', clientMessage: 'تاریخ انقضای پیشنهاد معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'expDateOp') { + return [ + express_validator_1.body('expDateOp').optional() + .custom(function (v) { + if (!v.from && !v.to) { + return false; + } + else if (v.from && isValidDate(v.from)) { + return false; + } + else if (v.to && isValidDate(v.to)) { + return false; + } + else if (v.from > v.to) { + return false; + } + else { + return true; + } + }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'expDateOp is not valid!', clientMessage: 'تاریخ انقضا پیشنهادی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'created_atOp') { + return [ + express_validator_1.body('created_atOp').optional() + .custom(function (v) { + if (!v.from && !v.to) { + return false; + } + else if (v.from && isValidDate(v.from)) { + return false; + } + else if (v.to && isValidDate(v.to)) { + return false; + } + else if (v.from > v.to) { + return false; + } + else { + return true; + } + }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'created_atOp is not valid!', clientMessage: 'تاریخ تولید پیشنهادی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'currency') { + return [ + express_validator_1.body('currency').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'currency is required!', clientMessage: 'ارز مورد نیاز است!' }), + express_validator_1.body('currency').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'currency is not valid!', clientMessage: 'ارز معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'quantity') { + return [ + express_validator_1.body('quantity').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'quantity is required!', clientMessage: 'تعداد درخواستی ارز مورد نیاز است!' }), + express_validator_1.body('quantity').isNumeric().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'quantity is not valid!', clientMessage: 'تعداد درخواستی ارز معتبر نیست!' }) + ]; + } + if (type === 'body' && input === 'offerIdOp') { + return [ + express_validator_1.body('offerIdOp').optional().isUUID() + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'offerId is not valid!', clientMessage: 'شناسه پیشنهاد معتبر نیست!' }) + ]; + } + // ------- Query -------- + if (type === 'query' && input === 'offerId') { + return [ + express_validator_1.query('offerId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'offerId is required!', clientMessage: 'شناسه پیشنهاد مورد نیاز است!' }), + express_validator_1.query('offerId').isUUID().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'offerId is not valid!', clientMessage: 'شناسه پیشنهاد معتبر نیست!' }) + ]; + } + // -------------------------------- + // -------------------------------- / + else if ((type === 'query' && input === 'currencyId')) { + return [ + express_validator_1.query('currencyId') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "curreny id can not method not ", clientMessage: ' ارز نمی‌تواند خال باشد.' }) + .isMongoId() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curreny id is not valid!', clientMessage: 'ارز معتبر نیست.!' }), + ]; + } + else if (type === 'body' && input === 'name') { + return [ + express_validator_1.body('name') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "name cn not be empty", clientMessage: 'نام نمی تواند خالی باشد' }) + .isString() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'name is not valid!', clientMessage: ' نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'currencyName') { + return [ + express_validator_1.body('currencyName') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "name cn not be empty", clientMessage: 'نام نمی تواند خالی باشد' }) + .isString() + .custom(function (curName) { + return (curName === 'BITCOIN') || (curName === 'RIAL') || (curName === 'TRON') || (curName === 'ETHEREUM'); + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'currency name info is not valid!', clientMessage: ' نام معتبر نیست!' }) + ]; + } + else if ((type === 'body' && input === 'persianName')) { + return [ + express_validator_1.body('persianName') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "name cn not be empty", clientMessage: 'نام فارسی نمی تواند خالی باشد' }) + .isString() + .custom(function (perName) { + return perName === 'اتریوم' || perName === 'ترون' || perName === 'بیت کوین' || perName === 'ریال'; + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'persian name is not valid !', clientMessage: ' نام فارسی معتبر نیست!' }), + ]; + } + else if ((type === 'body' && input === 'abName')) { + return [ + express_validator_1.body('abName') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "short name can not be empty", clientMessage: 'مخفف نمی تواند خالی باشد' }) + .isString() + .custom(function (shortName) { + return shortName === 'ETH' || shortName === 'BTC' || shortName === 'TRX' || shortName === 'IRR'; + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'short name is not valid!', clientMessage: ' مخفف معتبر نیست!' }), + ]; + } + else if ((type === 'body' && input === 'currencyId')) { + return [ + express_validator_1.body('currencyId') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "curreny id can not method not ", clientMessage: ' ارز نمی‌تواند خال باشد.' }) + .isMongoId() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curreny id is not valid!', clientMessage: 'ارز معتبر نیست.!' }), + ]; + } + else if ((type === 'body' && input === 'currencyValue')) { + return [ + express_validator_1.body('currencyValue') + .exists() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curreny value is not exsist!', clientMessage: ' مقدار نمی تواند خالی باشد!' }) + .isNumeric() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "currency value should be number", clientMessage: 'مقدار ارز بایذ عدد باشد' }) + .custom(function (v) { + return v >= 0; + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'the value should be positive!', clientMessage: 'مقدار باید مثبت باشد' }) + ]; + } + else if ((type === 'body' && input === 'receiverUserId')) { + return [ + express_validator_1.body('receiverUserId') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: " receiver User Id can not be empty", clientMessage: ' شناسه گیرنده نمی تواند خالی باشد ' }) + .isMongoId() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'receiver User Id is not valid!', clientMessage: 'شناسه گیرنده معتبر نیست' }) + ]; + } + else if ((type === 'body' && input === 'receiverUsername')) { + return [ + express_validator_1.body('receiverUsername') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: " receiver Username can not be empty", clientMessage: ' شناسه گیرنده نمی تواند خالی باشد ' }) + .custom(function (v) { + return isEmailValid(v) || exports.isValidMobilePhone(v); + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'receiver Username is not valid!', clientMessage: 'شناسه گیرنده معتبر نیست' }) + ]; + } + /// ///////////////////////////////////////// + /// //////// query ////////////////////////// + /// ///////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// user /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'query' && input === 'uuid') { + return [ + express_validator_1.query('uuid').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'uuid is required!', clientMessage: 'شناسه منحصربفرد پیشنهاد مورد نیاز است!' }), + express_validator_1.query('uuid').isUUID().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'uuid is not valid!', clientMessage: 'شناسه منحصربفرد پیشنهاد معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'title') { + return [ + express_validator_1.body('title').optional().isString().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'title is not valid!', clientMessage: 'تیتر معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'body') { + return [ + express_validator_1.body('body').exists().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'body is not present!', clientMessage: 'بدنه نظر موجود نیست!' }), + express_validator_1.body('body').isString().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'body is not valid!', clientMessage: 'بدنه معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'rate') { + return [ + express_validator_1.body('rate').optional().isNumeric().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'rate is not valid!', clientMessage: 'امتیاز معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'titleOp') { + return [ + express_validator_1.body('titleOp').optional().isString().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'title is not valid!', clientMessage: 'تیتر معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'bodyOp') { + return [ + express_validator_1.body('bodyOp').optional().isString().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'body is not valid!', clientMessage: 'بدنه نظر معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'rateOp') { + return [ + express_validator_1.body('rateOp').optional().isNumeric().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'rate is not valid!', clientMessage: 'امتیاز معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'reviewId') { + return [ + express_validator_1.body('reviewId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is required!', clientMessage: 'شناسه نظر مورد نیاز است!' }), + express_validator_1.body('reviewId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is not valid!', clientMessage: 'شناسه نظر معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'question') { + return [ + express_validator_1.body('question').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'question is required!', clientMessage: 'سوال مورد نیاز است!' }), + express_validator_1.body('question').isString().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'question is not valid!', clientMessage: 'سوال صحیح معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'profileName') { + return [ + express_validator_1.body('profileName').optional().isString().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'profileName is not valid!', clientMessage: 'نام معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'profileLastName') { + return [ + express_validator_1.body('profileLastName').optional().exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'profileLastName is required!', clientMessage: 'نام خانوادگی معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'profileBirthdate') { + console.log(express_validator_1.body('profileBirthdate')); + return [ + express_validator_1.body('profileBirthdate').optional() + .custom(function (v) { + return v.year && v.month && v.day; + }) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'profileBirthdate is required!', clientMessage: 'سن مورد نیاز است' }), + ]; + } + else if (type === 'body' && input === 'profilePhoneNumber') { + return [ + express_validator_1.body('profilePhoneNumber').optional().isString().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'profilePhoneNumber is required!', clientMessage: 'شماره تلفن مورد نیاز است!' }), + ]; + } + else if (type === 'body' && input === 'question') { + return [ + express_validator_1.body('question').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'question is required!', clientMessage: 'سوال مورد نیاز است!' }), + express_validator_1.body('question').isString().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'question is not valid!', clientMessage: 'سوال صحیح معتبر نیست!' }) + ]; + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// service /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'body' && input === 'productId') { + return [ + express_validator_1.body('productId').exists().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is required!', clientMessage: 'شناسه محصول مورد نیاز است!' }), + express_validator_1.body('productId').isHexadecimal().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }), + express_validator_1.body('productId').isMongoId().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'quantity') { + return [ + express_validator_1.body('quantity').exists().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Quantity is required!', clientMessage: 'تعداد محصول مورد نیاز است!' }), + express_validator_1.body('quantity').isInt({ min: 1 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Quantity is not valid!', clientMessage: 'تعداد محصول معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'isExisted') { + return [ + express_validator_1.body('isExisted').optional().isBoolean().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'isExisted is not valid!', clientMessage: 'شناسه وجود معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'rate') { + return [ + express_validator_1.body('rate').optional().isInt({ min: 1, max: 5 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Rate is not valid!', clientMessage: 'شناسه امتیازدهی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productRate') { + return [ + express_validator_1.body('productRate').optional().isInt({ min: 1, max: 5 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productRate is not valid!', clientMessage: 'شناسه امتیازدهی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'brands') { + return [ + express_validator_1.body('brands').optional().isArray({ min: 1 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'brands is not valid!', clientMessage: 'شناسه برند معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'categoryBrands') { + return [ + express_validator_1.body('categoryBrands').optional().isArray({ min: 1 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryBrands is not valid!', clientMessage: 'شناسه برند معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'priceObject') { + return [ + express_validator_1.body('priceObject').optional().custom(function (value) { return (value.from >= 0 && value.to); }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'priceObject are not valid!', clientMessage: 'مقادیر معتبر نیستند!' }), + express_validator_1.body('priceObject').optional().custom(function (value) { return value.from < value.to; }).withMessage({ clientCode: 128, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'priceObject are not valid!', clientMessage: 'مقادیر معتبر نیستند!' }), + express_validator_1.body('priceObject.from').optional().isInt({ min: 0 }).withMessage({ clientCode: 101, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'priceObject are not valid!', clientMessage: 'مقادیر معتبر نیستند!' }), + express_validator_1.body('priceObject.to').optional().isInt({ min: 0 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'priceObject are not valid!', clientMessage: 'مقادیر معتبر نیستند!' }), + ]; + } + else if (type === 'body' && input === 'offPercentOp') { + return [ + express_validator_1.body('offPercentOp').optional().isInt({ min: 1 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'OffPercent is not valid!', clientMessage: 'شناسه تخفیف معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'offPercent') { + return [ + express_validator_1.body('offPercent').exists().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'OffPercent is not present!', clientMessage: 'شناسه تخفیف لازم است!' }), + express_validator_1.body('offPercent').isInt({ min: 1 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'OffPercent is not valid!', clientMessage: 'شناسه تخفیف معتبر نیست!' }) + ]; + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// auth /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'body' && input === 'email') { + return [ + express_validator_1.body('email').exists().withMessage({ clientCode: 7, statusCode: 422, messageEnglish: 'Email and Password are required!', clientMessage: 'ایمیل و گذرواژه مورد نیاز است!' }), + express_validator_1.body('email').isEmail().withMessage({ clientCode: 8, statusCode: 422, messageEnglish: 'Email or Password are not valid!', clientMessage: 'ایمیل یا گذرواژه معتبر نیست' }) + ]; + } + else if (type === 'body' && input === 'password') { + return [ + express_validator_1.body('password').exists().withMessage({ clientCode: 7, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Email and Password are required!', clientMessage: 'ایمیل و گذرواژه مورد نیاز است!' }), + express_validator_1.body('password').isString().isLength({ min: 6 }).withMessage({ clientCode: 8, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Email or Password are not valid!', clientMessage: 'ایمیل یا گذرواژه معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'newPassword') { + return [ + express_validator_1.body('newPassword').exists().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Passwords are required!', clientMessage: 'گذرواژه ها مورد نیاز است!' }), + express_validator_1.body('newPassword').isString().isLength({ min: 6 }).withMessage({ clientCode: 80, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'New password is not strong!', clientMessage: 'گذرواژه به اندازه کافی قوی انتخاب نشده است!' }) + ]; + } + else if (type === 'body' && input === 'passwordConfirm') { + return [ + express_validator_1.body('passwordConfirm').exists().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Passwords are required!', clientMessage: 'گذرواژه ها مورد نیاز است!' }), + express_validator_1.body('passwordConfirm').isString().isLength({ min: 6 }).withMessage({ clientCode: 80, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'New password is not strong!', clientMessage: 'گذرواژه به اندازه کافی قوی انتخاب نشده است!' }) + ]; + } + else if (type === 'body' && input === 'name') { + return [ + express_validator_1.body('name').exists().withMessage({ clientCode: 76, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Name is required!', clientMessage: 'نام مورد نیاز است!' }), + express_validator_1.body('name').isString().isLength({ min: 1 }).withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Name is not valid!', clientMessage: 'نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'lastName') { + return [ + express_validator_1.body('lastName').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'LastName is required!', clientMessage: 'نام خانوادگی مورد نیاز است!' }), + express_validator_1.body('lastName').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'LastName is not valid!', clientMessage: 'نام خانوادگی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'phoneNumber') { + return [ + express_validator_1.body('phoneNumber').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phoneNumber", clientMessage: ' شماره تلفن ورودی معتبر نیست!' }) + .isLength({ min: 8, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phoneNumber", clientMessage: ' آشماره تلفن ورودی معتبر نیست!' }), + ]; + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// admin /////////////////////////////////////////////////////////////// + /// //////////////////////////////////////////////////////////////////////////////z + else if (type === 'body' && input === 'orderOrderStatus') { + return [ + // body('orderOrderStatus').optional().custom((v) => { return (v.status) }) + // .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'orderOrderStatus is required!', clientMessage: ' حالت ورودی سفارش معتبر نیست!' }), + // body('orderOrderStatus').optional() + // .custom((v) => { return Object.keys(v).every((i) => { return ['status', 'date'].includes(i) }) }) + // .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderStatus is not valid!", clientMessage: ' حالت ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderOrderStatus').optional().equals('Canceled') + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderStatus is not valid!", clientMessage: ' حالت ورودی سفارش معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'orderAddress') { + return [ + express_validator_1.body('orderAddress').optional() + .custom(function (v) { return (v.phone || v.mobilePhone || v.city || v.address || v.province || v.postalCode); }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderAddress') + .optional() + .custom(function (v) { + return Object.keys(v) + .every(function (i) { return ['phone', 'mobilePhone', 'city', 'address', 'province', 'postalCode'].includes(i); }); + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderAddress.phone').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 8, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderAddress.mobilePhone').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 10, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderAddress.city').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 2, max: 20 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderAddress.address').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 1, max: 100 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderAddress.province').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 2, max: 20 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderAddress.postalCode').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 10, max: 10 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'orderDelivery') { + return [ + express_validator_1.body('orderDelivery').optional().custom(function (v) { return (v.status || v.date || v.code); }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderDelivery').optional() + .custom(function (v) { + return Object.keys(v) + .every(function (i) { return ['status', 'date', 'code'].includes(i); }); + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderDelivery.status').optional().isIn(['Sent', 'Received', 'Failed', 'Unknown']) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderDelivery.code').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }) + .isLength({ min: 1, max: 15 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderDelivery.price').optional().isInt({ min: 0 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderDelivery.date').optional().custom(function (v) { + var date = new Date(v).getTime(); + return date < new Date().getTime(); + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'orderOrderId') { + return [ + express_validator_1.body('orderOrderId').exists() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderOrderId').custom(function (v) { + return (v.toString().indexOf(".1") > -1 || (v.toString().indexOf(".2") > -1)); + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'orderItems') { + return [ + express_validator_1.body('orderItems').optional() + .custom(function (v) { + var existanceArray = []; + return v.every(function (f) { + if (existanceArray.includes(f.product.toString())) { + return false; + } + existanceArray.push(f.product.toString()); + return Object.keys(f).every(function (i) { + if (i == 'product') { + return ObjectId.isValid(f.product); + } + else if (i == 'quantity') { + return (Number.isInteger(Number(f.quantity)) && Number(f.quantity) >= 0); + } + else { + return false; + } + }); + }); + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderItems's fields are not valid!", clientMessage: 'تعداد ورودی سفارش معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'province') { + return [ + express_validator_1.body('province').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Province is required!', clientMessage: 'نام استان مورد نیاز است!' }), + express_validator_1.body('province').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Province is not valid!', clientMessage: 'نام استان معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'title') { + return [ + express_validator_1.body('title').optional().isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'title is not valid!', clientMessage: 'عنوان آدرس معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'district') { + return [ + express_validator_1.body('district').optional().isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'district is not valid!', clientMessage: 'منطقه شهری آدرس معتبر نیست!' }), + express_validator_1.body('district').optional().isIn([ + 'منطقه ۱۱', 'منطقه ۱۰', 'منطقه ۹', 'منطقه ۸', 'منطقه ۷', 'منطقه ۶', 'منطقه ۵', 'منطقه ۴', 'منطقه ۳', 'منطقه ۲', 'منطقه ۱', + 'منطقه ۲۲', 'منطقه ۲۱', 'منطقه ۲۰', 'منطقه ۱۹', 'منطقه ۱۸', 'منطقه ۱۷', 'منطقه ۱۶', 'منطقه ۱۵', 'منطقه ۱۴', 'منطقه ۱۳', 'منطقه ۱۲' + ]) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'district is not valid!', clientMessage: 'منطقه شهری آدرس معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'city') { + return [ + express_validator_1.body('city').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'City is required!', clientMessage: 'نام شهر مورد نیاز است!' }), + express_validator_1.body('city').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'City is not valid!', clientMessage: 'نام شهر معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'address') { + return [ + express_validator_1.body('address').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Address is required!', clientMessage: 'آدرس مورد نیاز است!' }), + express_validator_1.body('address').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Address is not valid!', clientMessage: 'آدرس معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'postalCode') { + return [ + express_validator_1.body('postalCode').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PostalCode is required!', clientMessage: 'کد پستی مورد نیاز است!' }), + express_validator_1.body('postalCode') + .custom(function (v) { + return v && v.length === 10 && (/^\d+$/.test(v) || /^\d+$/.test(numbersFormatter(v, 'en'))); + }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PostalCode is not valid!', clientMessage: 'کد پستی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'phone') { + return [ + express_validator_1.body('phone').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phone's is not valid!", clientMessage: 'شماره تلفن معتبر نیست!' }), + express_validator_1.body('phone').optional() + .isLength({ min: 5, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phone's is not valid!", clientMessage: 'شماره تلفن معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'mobilePhone') { + return [ + express_validator_1.body('mobilePhone').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "MobilePhone's is not valid!", clientMessage: 'شماره موبایل معتبر نیست!' }), + express_validator_1.body('mobilePhone') + .custom(function (v) { + return v.length === 11 && (v[0] == '0' || v[0] == '۰') && (v[1] == '9' || v[1] == '۹') && (/^\d+$/.test(v) || /^\d+$/.test(numbersFormatter(v, 'en'))); + }) + .isLength({ min: 10, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "MobilePhone's is not valid!", clientMessage: 'شماره موبایل معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'addressId') { + return [ + express_validator_1.body('addressId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'AddressId Code is required!', clientMessage: 'شناسه آدرس مورد نیاز است!' }), + express_validator_1.body('addressId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'AddressId Code is not valid!', clientMessage: 'شناسه آدرس معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'paymentMethod') { + return [ + express_validator_1.body('paymentMethod').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PaymentMethod Code is required!', clientMessage: 'نحوه پرداخت مورد نیاز است!' }), + express_validator_1.body('paymentMethod').isIn(['Cash', 'Online', 'FireBox', 'ChargeCapsule']).withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PaymentMethod Code is not valid!', clientMessage: 'نحوه پرداخت معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'offCodeId') { + return [ + express_validator_1.body('offCodeId').optional().isString().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'OffCodeId Code is required!', clientMessage: 'نام کد مورد معتبر نیست!' }), + express_validator_1.body('offCodeId').optional().isLength({ min: 1 }).withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'OffCodeId Code is not valid!', clientMessage: 'نام کد معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'filterQuantity') { + return [ + express_validator_1.body('filterQuantity').optional() + .custom(function (v) { + return v.from && v.to && typeof (Number(v.from)) === 'number' && typeof (Number(v.to)) === 'number' && v.from < v.to; + }) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'filterQuantity Code is required!', clientMessage: 'فیلتر تعداد معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'filterCategory') { + return [ + express_validator_1.body('filterCategory').optional() + .isString() + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'filterCategory Code is required!', clientMessage: 'فیلتر دسته بندی معتبر نیست!' }), + express_validator_1.body('filterCategory').optional() + .isLength({ min: 1 }) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'filterCategory Code is required!', clientMessage: 'فیلتر دسته بندی معتبر نیست!' }), + ]; + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// admin /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'body' && input === 'reviewIds') { + return [ + express_validator_1.body('reviewIds').isArray({ min: 1 }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is not valid!', clientMessage: 'شناسه نظر معتبر نیست!' }), + express_validator_1.body('reviewIds') + .custom(function (r) { + r.every(function (i) { + return i.isMongoId(); + }); + }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is not valid!', clientMessage: 'شناسه نظر معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'qAndAs') { + return [ + express_validator_1.body('qAndAs').isArray({ min: 1 }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'QAndAs Code are not valid!', clientMessage: 'شناسه های سوالات معتبر نیستند!' }), + express_validator_1.body('qAndAs') + .custom(function (r) { + r.every(function (i) { + return i.isMongoId(); + }); + }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'QAndAs Code are not valid!', clientMessage: 'شناسه های سوالات معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'englishName') { + return [ + express_validator_1.body('englishName').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'englishName is required!', clientMessage: 'نام انگلیسی مورد نیاز است!' }), + express_validator_1.body('englishName').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'englishName is not valid!', clientMessage: 'نام انگلیسی معتبر نیست!' }), + express_validator_1.body('englishName').isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'englishName is not valid!', clientMessage: 'نام انگلیسی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productEnglishName') { + return [ + express_validator_1.body('productEnglishName').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productEnglishName is not valid!', clientMessage: 'نام انگلیسی معتبر نیست!' }), + express_validator_1.body('productEnglishName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productEnglishName is not valid!', clientMessage: 'نام انگلیسی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'tags') { + return [ + express_validator_1.body('tags').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Tags is required!', clientMessage: 'تگ مورد نیاز است!' }), + express_validator_1.body('tags').isArray({ min: 1, max: 10 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Tags is not valid!', clientMessage: 'تگ معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'tagsOp') { + return [ + express_validator_1.body('tagsOp') + .optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'TagsOp is not valid!', clientMessage: 'تگ معتبر نیست!' }), + express_validator_1.body('tagsOp') + .optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'TagsOp is not valid!', clientMessage: 'تگ معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productTags') { + return [ + express_validator_1.body('productTags').optional().isArray({ min: 1, max: 10 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productTags is not valid!', clientMessage: 'تگ معتبر نیست!' }), + express_validator_1.body('productTags').optional().custom(function (v) { return v.every(function (i) { return typeof i === 'string'; }); }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productTags is not valid!', clientMessage: 'تگ معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'brand') { + return [ + express_validator_1.body('brand').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'brand is required!', clientMessage: 'نام برند مورد نیاز است!' }), + express_validator_1.body('brand').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'brand is not valid!', clientMessage: 'نام برند معتبر نیست!' }), + express_validator_1.body('brand').isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'brand is not valid!', clientMessage: 'نام برند معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productBrand') { + return [ + express_validator_1.body('productBrand').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productBrand is not valid!', clientMessage: 'نام برند معتبر نیست!' }), + express_validator_1.body('productBrand').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productBrand is not valid!', clientMessage: 'نام برند معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productCode') { + return [ + express_validator_1.body('productCode').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCode is required!', clientMessage: 'کد محصول مورد نیاز است!' }), + express_validator_1.body('productCode').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCode is not valid!', clientMessage: 'کد محصول معتبر نیست!' }), + express_validator_1.body('productCode').isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCode is not valid!', clientMessage: 'کد محصول معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'subCategory') { + return [ + express_validator_1.body('subCategory').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'subCategory is required!', clientMessage: 'زیر دسته بندی مورد نیاز است!' }), + express_validator_1.body('subCategory').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'subCategory is not valid!', clientMessage: 'زیر دسته بندی معتبر نیست!' }), + express_validator_1.body('subCategory').isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'subCategory is not valid!', clientMessage: 'زیر دسته بندی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productProductCode') { + return [ + express_validator_1.body('productProductCode').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productProductCode is not valid!', clientMessage: 'کد محصول معتبر نیست!' }), + express_validator_1.body('productProductCode').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productProductCode is not valid!', clientMessage: 'کد محصول معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'categoryCode') { + return [ + express_validator_1.body('categoryCode').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCode is required!', clientMessage: 'کد دسته بندی مورد نیاز است!' }), + express_validator_1.body('categoryCode').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productCategoryCode') { + return [ + express_validator_1.body('productCategoryCode').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCategoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }), + express_validator_1.body('productCategoryCode').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCategoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'categoryCategoryCode') { + return [ + express_validator_1.body('categoryCategoryCode').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCategoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }), + express_validator_1.body('categoryCategoryCode').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCategoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'categoryId') { + return [ + express_validator_1.body('categoryId').optional().isHexadecimal() + .withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CategoryId is not valid!', clientMessage: 'شناسه دسته بندی معتبر نیست!' }), + express_validator_1.body('categoryId').optional().isMongoId() + .withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CategoryId is not valid!', clientMessage: 'شناسه دسته بندی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'image') { + return [ + express_validator_1.body('image').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'image is required!', clientMessage: 'آدرس عکس مورد نیاز است!' }), + express_validator_1.body('image').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'image is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + express_validator_1.body('image').isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'image is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + express_validator_1.body('image').custom(function (v) { return v.split('.').length === 2 && ObjectId.isValid(v.split('.')[0]); }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'image is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productImage') { + return [ + express_validator_1.body('productImage').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + express_validator_1.body('productImage').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + express_validator_1.body('productImage').optional().custom(function (v) { return v.split('.').length === 2 && ObjectId.isValid(v.split('.')[0]); }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'categoryImage') { + return [ + express_validator_1.body('categoryImage').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + express_validator_1.body('categoryImage').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + express_validator_1.body('categoryImage').optional().custom(function (v) { return v.split('.').length === 2 && ObjectId.isValid(v.split('.')[0]); }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'categoryDescription') { + return [ + express_validator_1.body('categoryDescription').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryDescription is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + express_validator_1.body('categoryDescription').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryDescription is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'cardGallery') { + return [ + express_validator_1.body('cardGallery').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'cardGallery is required!', clientMessage: 'آدرس گالری مورد نیاز است!' }), + express_validator_1.body('cardGallery').isArray({ min: 1, max: 3 }) + .withMessage({ clientCode: 80, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'cardGallery is not valid!', clientMessage: 'آدرس گالری معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productCardGallery') { + return [ + express_validator_1.body('productCardGallery').optional().isArray({ min: 1, max: 3 }) + .withMessage({ clientCode: 80, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCardGallery is not valid!', clientMessage: 'آدرس گالری معتبر نیست!' }), + express_validator_1.body('productCardGallery').optional().custom(function (v) { return lodash_1.every(function (i) { return i.split('.').length === 2 && ObjectId.isValid(i.split('.')[0]); }); }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCardGallery is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'price') { + return [ + express_validator_1.body('price').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'price required!', clientMessage: 'قیمت مورد نیاز است!' }), + express_validator_1.body('price').isInt({ min: 1 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'price are not valid!', clientMessage: 'قیمت معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'newPrice') { + return [ + express_validator_1.body('newPrice').optional().isInt({ min: 1 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'newPrice are not valid!', clientMessage: 'قیمت جدید معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productPrice') { + return [ + express_validator_1.body('productPrice').optional().isInt({ min: 1 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productPrice are not valid!', clientMessage: 'قیمت معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productNewPrice') { + return [ + express_validator_1.body('productNewPrice').optional().isInt({ min: 1 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productNewPrice are not valid!', clientMessage: 'قیمت جدید معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'description') { + return [ + express_validator_1.body('description').optional().isString().isLength({ min: 1, max: 1000 }).withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Body are not valid!', clientMessage: 'توضیح بیشتر معتبر نیست!' }), + express_validator_1.body('gallery').optional().isArray({ min: 1, max: 20 }).withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Gallery are not valid!', clientMessage: 'گالری معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productDescription') { + return [ + express_validator_1.body('productDescription').optional() + .isString() + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Body are not valid!', clientMessage: 'توضیح بیشتر معتبر نیست!' }) + .isLength({ max: 1000 }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Body are not valid!', clientMessage: 'توضیح بیشتر معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productGallery') { + return [ + express_validator_1.body('productGallery').optional().isArray({ max: 20 }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Gallery are not valid!', clientMessage: 'گالری معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'cardProperties') { + return [ + express_validator_1.body('cardProperties').optional().isArray({ max: 10 }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CardProperties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }), + express_validator_1.body('cardProperties') + .optional() + .custom(function (v) { + return v.every(function (i) { return i.key && typeof i.key === 'string' && i.value && typeof i.value === 'string'; }); + }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CardProperties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'properties') { + return [ + express_validator_1.body('properties').optional().isArray({ max: 10 }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Properties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }), + express_validator_1.body('properties') + .optional() + .custom(function (v) { + return v.every(function (i) { + i.title && i.content && Array.isArray(i.content) && i.content.length > 0; + // return i.content.every((j) => { return j.key && typeof j.key === 'string' && j.value && typeof j.value === 'string' }) + }); + }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Properties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'accessLevels') { + return [ + express_validator_1.body('accessLevels').optional().notEmpty().withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'AccessLevels are not valid!', clientMessage: 'سطوح دسترسی معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'productCardProperties') { + return [ + express_validator_1.body('productCardProperties').optional().isArray({ min: 1 }).withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCardProperties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'productProperties') { + return [ + express_validator_1.body('productProperties').optional().isArray({ min: 1 }).withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productProperties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'productAccessLevels') { + return [ + express_validator_1.body('productAccessLevels').optional().notEmpty() + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productAccessLevels are not valid!', clientMessage: 'سطوح دسترسی معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'commercialhName') { + return [ + express_validator_1.body('commercialhName').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CommercialhName is required!', clientMessage: 'نام تجاری مورد نیاز است!' }), + express_validator_1.body('commercialhName').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CommercialhName is not valid!', clientMessage: 'نام تجاری معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'searchItems') { + return [ + express_validator_1.body('searchItems').optional().isArray({ min: 1, max: 7 }).withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'searchItems is not valid!', clientMessage: 'آیتم های جستجو معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'categorySearchItems') { + return [ + express_validator_1.body('categorySearchItems').optional().isArray({ min: 1, max: 7 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categorySearchItems is not valid!', clientMessage: 'آیتم های جستجو معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === '_id') { + return [ + express_validator_1.body('_id').exists() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: '_id is required!', clientMessage: 'شناسه مورد نیاز است!' }), + express_validator_1.body('_id').isHexadecimal() + .withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: '_id is not valid!', clientMessage: 'شناسه معتبر نیست!' }), + express_validator_1.body('_id').isMongoId() + .withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: '_id is not valid!', clientMessage: 'شناسه معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'managerName') { + return [ + express_validator_1.body('managerName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerName is not valid!', clientMessage: 'نام معتبر نیست!' }), + express_validator_1.body('managerName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerName is not valid!', clientMessage: 'نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'managerLastName') { + return [ + express_validator_1.body('managerLastName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerLastName is not valid!', clientMessage: 'نام معتبر نیست!' }), + express_validator_1.body('managerLastName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerLastName is not valid!', clientMessage: 'نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'managerEmail') { + return [ + express_validator_1.body('managerEmail').optional().isEmail() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerEmail is not valid!', clientMessage: 'نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'managerIsActive') { + return [ + express_validator_1.body('managerIsActive').optional().isBoolean() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerIsActive is not valid!', clientMessage: 'نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'managerRole') { + return [ + express_validator_1.body('managerRole').optional().isIn(['Supporter', 'Manager', 'Deliveryman']) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerRole is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'supporterName') { + return [ + express_validator_1.body('supporterName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterName is not valid!', clientMessage: 'نام معتبر نیست!' }), + express_validator_1.body('supporterName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterName is not valid!', clientMessage: 'نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'supporterLastName') { + return [ + express_validator_1.body('supporterLastName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterLastName is not valid!', clientMessage: 'نام معتبر نیست!' }), + express_validator_1.body('supporterLastName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterLastName is not valid!', clientMessage: 'نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'supporterEmail') { + return [ + express_validator_1.body('supporterEmail').optional().isEmail() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterEmail is not valid!', clientMessage: 'نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'supporterIsActive') { + return [ + express_validator_1.body('supporterIsActive').optional().isBoolean() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterIsActive is not valid!', clientMessage: 'نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'supporterRole') { + return [ + express_validator_1.body('supporterRole').optional().isIn(['Supporter', 'Manager', 'Deliveryman']) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterRole is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'deliverymanName') { + return [ + express_validator_1.body('deliverymanName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanName is not valid!', clientMessage: 'نام معتبر نیست!' }), + express_validator_1.body('deliverymanName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanName is not valid!', clientMessage: 'نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'deliverymanLastName') { + return [ + express_validator_1.body('deliverymanLastName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanLastName is not valid!', clientMessage: 'نام خانوادگی معتبر نیست!' }), + express_validator_1.body('deliverymanLastName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanLastName is not valid!', clientMessage: 'نام خانوادگی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'deliverymanEmail') { + return [ + express_validator_1.body('deliverymanEmail').optional().isEmail() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanEmail is not valid!', clientMessage: 'نام کاربری معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'deliverymanIsActive') { + return [ + express_validator_1.body('deliverymanIsActive').optional().isBoolean() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanIsActive is not valid!', clientMessage: 'مجوز فعالیت معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'deliverymanRole') { + return [ + express_validator_1.body('deliverymanRole').optional().isIn(['Supporter', 'Manager', 'Deliveryman']) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanRole is not valid!', clientMessage: 'نقش معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'userIsActive') { + return [ + express_validator_1.body('userIsActive').optional().isBoolean() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'userIsActive is not valid!', clientMessage: 'نام معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'userUserType') { + return [ + express_validator_1.body('userUserType').optional().isIn(['Normal', 'Builder', 'Vip']) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'userUserType is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'isActive') { + return [ + express_validator_1.body('isActive').exists() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'IsActive is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }), + express_validator_1.body('isActive').isBoolean() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'IsActive is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'role') { + return [ + express_validator_1.body('role').exists() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Role is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }), + express_validator_1.body('role').isIn(['Supporter', 'Manager']) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Role is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'quantity') { + return [ + express_validator_1.body('quantity').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Quantity is required!', clientMessage: 'تعداد مورد نیاز است!' }), + express_validator_1.body('quantity').isInt({ min: 0 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Quantity are not valid!', clientMessage: 'تعداد معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'regionNum') { + return [ + express_validator_1.body('regionNum').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'RegionNum is required!', clientMessage: 'شماره منطقه مورد نیاز است!' }), + express_validator_1.body('regionNum').isInt({ min: 0, max: 22 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'RegionNum are not valid!', clientMessage: 'شماره منطقه معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'shippingPrice') { + return [ + express_validator_1.body('shippingPrice').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ShippingPrice is required!', clientMessage: 'قیمت ارسال مورد نیاز است!' }), + express_validator_1.body('shippingPrice').isInt({ min: 0 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ShippingPrice are not valid!', clientMessage: 'قیمت ارسال معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'userId') { + return [ + express_validator_1.body('userId').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'UserId is required!', clientMessage: 'شناسه مورد نیاز است!' }), + ]; + } + else if (type === 'body' && input === 'id') { + return [ + express_validator_1.body('id').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + express_validator_1.body('id').isUUID().withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ]; + } + //what was this? + // else if (type === 'body' && input === 'c') { + // return [ + // body('id').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + // body('id').isUUID().withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + // ] + // } + else if (type === 'body' && input === 'verificationCode') { + return [ + express_validator_1.body('verificationCode').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + express_validator_1.body('verificationCode').isString().isLength({ min: 4, max: 4 }).withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'answer') { + return [ + express_validator_1.body('answer').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + express_validator_1.body('answer').isString().isLength({ min: 1, max: 200 }).withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'questionId') { + return [ + express_validator_1.body('questionId').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + express_validator_1.body('questionId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'username') { + return [ + express_validator_1.body('username').exists().withMessage({ clientCode: 11, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Username address is required!', clientMessage: 'نام کاربری مورد نیاز است!' }), + express_validator_1.body('username') + .custom(function (v) { + return isEmailValid(v) || exports.isValidMobilePhone(v); + }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Username address is not valid!', clientMessage: 'نام کاربری معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'queries') { + return [ + express_validator_1.body('queries').exists().withMessage({ clientCode: 38, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Queries are required!', clientMessage: 'جستجوها مورد نیاز است!' }), + express_validator_1.body('queries').isArray({ min: 1 }).withMessage({ clientCode: 38, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Queries are not valid!', clientMessage: 'جستجوها معتبر نیستند!' }) + ]; + } + else if (type === 'body' && input === 'commercialName') { + return [ + express_validator_1.body('commercialName').exists() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'commercialName required!', clientMessage: 'نام تجاری مورد نیاز است!' }), + express_validator_1.body('commercialName').isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'commercialName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'categoryName') { + return [ + express_validator_1.body('categoryName').optional().isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }), + express_validator_1.body('categoryName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'productName') { + return [ + express_validator_1.body('productName').optional().isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }), + express_validator_1.body('productName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'categoryCommercialName') { + return [ + express_validator_1.body('categoryCommercialName').optional().isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCommercialName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }), + express_validator_1.body('categoryCommercialName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCommercialName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'code') { + return [ + express_validator_1.body('code').exists() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف مورد نیاز است!' }), + express_validator_1.body('code').isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }), + express_validator_1.body('code').isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'type') { + return [ + express_validator_1.body('type').exists() + .withMessage({ clientCode: 52, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Type is required!', clientMessage: 'نوع مورد نیاز است!' }), + express_validator_1.body('type').isIn(['ALL_ALL', 'ALL_CATEGORY', 'ALL_PRODUCT', 'ONE_ALL', 'ONE_CATEGORY', 'ONE_PRODUCT']) + .withMessage({ clientCode: 53, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Type is not valid!', clientMessage: 'نوع معتبر نیست!' }), + ]; + } + else if (type === 'body' && input === 'usernameOp') { + return [ + express_validator_1.body('usernameOp').optional() + .custom(function (v) { + return isEmailValid(v) || exports.isValidMobilePhone(v); + }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'UsernameOp is not valid!', clientMessage: 'آدرس ایمیل معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'minPrice') { + return [ + express_validator_1.body('minPrice').optional().isInt({ min: 1 }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'minPrice is not valid!', clientMessage: 'حداقل میزان خرید معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'maxOff') { + return [ + express_validator_1.body('maxOff').optional().isInt({ min: 1 }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'maxOff is not valid!', clientMessage: 'حداکثر تخفیف روی یک آیتم معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'maxTotalOff') { + return [ + express_validator_1.body('maxTotalOff').optional().isInt({ min: 1 }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'maxTotalOff is not valid!', clientMessage: 'حداکثر تخفیف در یک خرید معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'offPercent') { + return [ + express_validator_1.body('offPercent').exists() + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'offPercent is not valid!', clientMessage: 'درصد تخفیف مورد نیاز است!' }), + express_validator_1.body('offPercent').isInt({ min: 1 }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'offPercent is not valid!', clientMessage: 'درصد تخفیف معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'quantityOp') { + return [ + express_validator_1.body('quantityOp').optional().isInt({ min: 1 }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'quantity is not valid!', clientMessage: 'تعداد مجاز استفاده از کد تخفیف معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'expiredDate') { + return [ + express_validator_1.body('expiredDate').exists() + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'expiredDate is not valid!', clientMessage: 'تاریخ انقضا مورد نیاز است!' }), + express_validator_1.body('expiredDate').custom(function (v) { + var date = new Date(v).getTime(); + console.log('date is ', date, 'and the diffrence is ', new Date().getTime() - date); + return date > new Date().getTime(); + }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'expiredDate is not valid!', clientMessage: 'تاریخ انقضا معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'codeOp') { + return [ + express_validator_1.body('codeOp').optional().isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }), + express_validator_1.body('codeOP').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'date') { + return [ + express_validator_1.body('date').optional().custom(function (v) { return (v.from && v.from === v.from.getTime()) || (v.to && v.to === v.from.getTime()); }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Date is not valid!', clientMessage: 'تاریخ انقضا معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'isValid') { + return [ + express_validator_1.body('isValid').optional().isBoolean() + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'isValid is not valid!', clientMessage: 'پرچم نمایش تمام کدها معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'orderId') { + return [ + express_validator_1.body('orderId').exists().isFloat() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not present!", clientMessage: 'شناسه ورودی سفارش موجود نیست!' }), + express_validator_1.body('orderId') + .custom(function (v) { + return ['1', '2', '3', '4'].includes(v.toString().split('.')[1]); + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'paymentMethodOp') { + return [ + express_validator_1.body('paymentMethodOp').optional().isString().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PaymentMethod Code is not valid!', clientMessage: 'نحوه پرداخت معتبر نیست!' }), + express_validator_1.body('paymentMethodOp').optional().isIn(['Cash', 'Online']).withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PaymentMethod Code is not valid!', clientMessage: 'نحوه پرداخت معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'deliveryStatusOp') { + return [ + express_validator_1.body('deliveryStatusOp').optional().isString() + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliver status is not valid!', clientMessage: 'وضعیت ارسال معتبر نیست' }), + express_validator_1.body('deliveryStatusOp').optional().isIn(['Sent', 'Received', 'Failed', 'Unknown']) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliver status is not valid!', clientMessage: 'وضعیت ارسال معتبر نیست' }), + ]; + } + else if (type === 'body' && input === 'deliveryStatus') { + return [ + express_validator_1.body('deliveryStatus').exists() + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliver status is not valid!', clientMessage: 'وضعیت ارسال معتبر نیست' }), + express_validator_1.body('deliveryStatus').isIn(['Sent', 'Received', 'Failed', 'Unknown']) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliver status is not valid!', clientMessage: 'وضعیت ارسال معتبر نیست' }), + ]; + } + else if (type === 'body' && input === 'usernameOp') { + return [ + express_validator_1.body('usernameOp').optional().isEmail() + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'username is not valid!', clientMessage: 'وضعیت یوزرنیم ارسالی معتبر نیست' }), + ]; + } + else if (type === 'body' && input === 'orderStatusOp') { + return [ + express_validator_1.body('orderStatusOp').optional().isString() + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'order status is not valid!', clientMessage: 'وضعیت سفارش معتبر نیست' }), + express_validator_1.body('orderStatusOp').optional().isIn(['Successful', 'Failed', 'Reverted', 'Canceled', 'Pending', 'Edited']) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'order status is not valid!', clientMessage: 'وضعیت سفارش معتبر نیست' }), + ]; + } + else if (type === 'body' && input === 'dateOp') { + return [ + // body('dateOp').optional() + // .custom((v) => { + // return Object.keys(v).length ===2}) + // .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'date object is not valid!', clientMessage: 'وضعیت تاریخ های ورودی معتبر نیست' }), + express_validator_1.body('dateOp').optional() + .custom(function (v) { + var from = new Date(v.from).getTime(); + var to = new Date(v.to).getTime(); + if (to > from) { + return true; + } + else + return false; + }).withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'date object is not valid!', clientMessage: 'وضعیت تاریخ های ورودی معتبر نیست' }), + ]; + } + else if (type === 'body' && input === 'priceOp') { + return [ + express_validator_1.body('priceOp').optional() + .custom(function (v) { + return Object.keys(v) + .every(function (i) { return ['from', 'to'].includes(i); }); + }).withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'price object is not valid!', clientMessage: 'وضعیت قیمت های ورودی معتبر نیست' }), + express_validator_1.body('priceOp').optional() + .custom(function (v) { + if (v["to"] > v["from"]) { + return true; + } + else + return false; + }).withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'price object is not valid!', clientMessage: 'وضعیت قیمت های ورودی معتبر نیست' }), + ]; + } + else if (type === 'body' && input === 'orderIdOp') { + return [ + express_validator_1.body('orderIdOp').optional().isFloat() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }), + express_validator_1.body('orderIdOp').optional().custom(function (v) { + return (v.toString().indexOf(".1") > -1 || (v.toString().indexOf(".2") > -1)); + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'isExcel') { + return [ + express_validator_1.body('isExcel').optional().isBoolean().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'excel flag is invalid!', clientMessage: 'وضعیت خروجی اکسل صحیح نیست' }), + ]; + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// ticket /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'body' && input === 'ticketSubject') { + return [ + express_validator_1.body('ticketSubject').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'subject is required!', clientMessage: 'متن موضوع مورد نیاز است!' }), + express_validator_1.body('ticketSubject').isString().isLength({ min: 8, max: 1500 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'subject is not valid!', clientMessage: 'متن موضوع معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'ticketType') { + return [ + express_validator_1.body('ticketType').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketType is required!', clientMessage: 'نوع تیکت مورد نیاز است!' }), + express_validator_1.body('ticketType').isString().custom(function (k) { + return ["Task", "Issue"].includes(k); + }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketType is not valid!', clientMessage: 'نوع تیکت معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'ticketIssue') { + return [ + express_validator_1.body('ticketIssue').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketIssue is required!', clientMessage: 'متن مشکل مورد نیاز است!' }), + express_validator_1.body('ticketIssue').isString().isLength({ min: 8, max: 1500 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketIssue is not valid!', clientMessage: 'متن مشکل معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'ticketId') { + return [ + express_validator_1.body('ticketId').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is required!', clientMessage: 'کد تیکت مورد نیاز است!' }), + express_validator_1.body('ticketId').isMongoId().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is not valid!', clientMessage: 'کد تیکت معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'ticketIdArray') { + return [ + express_validator_1.body('ticketIdArray').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is required!', clientMessage: 'کد تیکت مورد نیاز است!' }), + express_validator_1.body('ticketIdArray').isArray().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is required!', clientMessage: 'کد تیکت مورد نیاز است!' }), + express_validator_1.body('ticketIdArray').custom(function (r) { + return r.every(function (i) { + console.log("i is ", i); + return ObjectId.isValid(i); + }); + }). + withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is not valid!', clientMessage: 'کد تیکت معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'ticketComment') { + return [ + express_validator_1.body('ticketComment').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketComment is required!', clientMessage: 'متن تیکت مورد نیاز است!' }), + express_validator_1.body('ticketComment').isString().isLength({ min: 8, max: 1500 }).withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketComment is not valid!', clientMessage: 'متن تیکت معتبر نیست!' }) + ]; + } + else if (type === 'body' && input === 'ticketPriority') { + return [ + express_validator_1.body('ticketPriority').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketPriority is required!', clientMessage: 'متن الویت مورد نیاز است!' }), + express_validator_1.body('ticketPriority').isString().custom(function (k) { + return ["Urgent", "Normal", "Critical"].includes(k); + }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketPriority is not valid!', clientMessage: ' الویت معتبر نیست!' }) + ]; + } + /// ///////////////////////////////////////// + /// //////// query ///////////////////////// + /// ///////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// ticket /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'query' && input === 'ticketId') { + return [ + express_validator_1.query('ticketId').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is required!', clientMessage: 'کد تیکت مورد نیاز است!' }), + express_validator_1.query('ticketId').isMongoId().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is not valid!', clientMessage: 'کد تیکت معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'ticketStatus') { + return [ + express_validator_1.query('ticketStatus').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket status is required!', clientMessage: 'کد تیکت مورد نیاز است!' }), + express_validator_1.query('ticketStatus').isString().custom(function (k) { + return ["0", "1", "2", "3"].includes(k); + }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket status is not valid!', clientMessage: 'وضعیت تیکت معتبر نیست!' }) + ]; + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// admin /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'query' && input === 'categoryCode') { + return [ + express_validator_1.query('categoryCode').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCode is required!', clientMessage: 'کد دسته بندی مورد نیاز است!' }), + express_validator_1.query('categoryCode').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'productCode') { + return [ + express_validator_1.query('productCode').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCode is required!', clientMessage: 'کد محصول مورد نیاز است!' }), + express_validator_1.query('productCode').isString().isLength({ min: 1 }).withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCode is not valid!', clientMessage: 'کد محصول معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'code') { + return [ + express_validator_1.query('code').exists() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف مورد نیاز است!' }), + express_validator_1.query('code').isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }), + express_validator_1.query('code').isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }) + ]; + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// service /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'query' && input === 'productId') { + return [ + express_validator_1.query('productId').exists().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is required!', clientMessage: 'شناسه محصول مورد نیاز است!' }), + express_validator_1.query('productId').isHexadecimal().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }), + express_validator_1.query('productId').isMongoId().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'categoryId') { + return [ + express_validator_1.query('categoryId').optional().isHexadecimal().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CategoryId is not valid!', clientMessage: 'شناسه دسته بندی معتبر نیست!' }), + express_validator_1.query('categoryId').optional().isMongoId().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CategoryId is not valid!', clientMessage: 'شناسه دسته بندی معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'sortBy') { + return [ + express_validator_1.query('sortBy').optional().isIn(['1', '2', '3', '4', '5']).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'SortBy is not valid!', clientMessage: 'شناسه مرتب سازی معتبر نیست!' }), + ]; + } + else if (type === 'query' && input === 'id') { + return [ + express_validator_1.query('id').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Transaction Id is required!', clientMessage: 'شناسه تراکنش مورد نیاز است!' }), + express_validator_1.query('id').isHexadecimal().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Transaction Id is not valid!', clientMessage: 'شناسه تراکنش معتبر نیست!' }), + express_validator_1.query('id').isString().isLength({ min: 128, max: 128 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Transaction Id is not valid!', clientMessage: 'شناسه تراکنش معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'username') { + return [ + express_validator_1.query('username').exists().withMessage({ clientCode: 70, statusCode: 422, clientMessage: 'Username is required!' }), + express_validator_1.query('username') + .custom(function (v) { + return isEmailValid(v) || exports.isValidMobilePhone(v); + }) + .withMessage({ clientCode: 71, statusCode: 422, clientMessage: 'Username is not valid!' }) + ]; + } + else if (type === 'query' && input === 'string') { + return [ + express_validator_1.query('string').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + express_validator_1.query('string').isUUID().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'page') { + return [ + express_validator_1.query('page').exists().withMessage({ clientCode: 33, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Page is required!', clientMessage: 'عدد صفحه مورد نیاز است!' }), + express_validator_1.query('page').isInt().isLength({ min: 1, max: 2 }).withMessage({ clientCode: 34, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Page is not valid!', clientMessage: 'عدد صفحه معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'location') { + return [ + express_validator_1.query('location').exists().withMessage({ clientCode: 35, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Location is required!', clientMessage: 'مبدا درخواست نشانه لوکیشن را ندارد!' }), + express_validator_1.query('location').isIn(['none', 'home', 'dashboard', 'wallet', 'offers', 'all']).withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'Location is not valid!', clientMessage: 'نشانه لوکیشن معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'reviewId') { + return [ + express_validator_1.query('reviewId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is required!', clientMessage: 'شناسه نظر مورد نیاز است!' }), + express_validator_1.query('reviewId').isMongoId() + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is not valid!', clientMessage: 'شناسه نظر معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'addressId') { + return [ + express_validator_1.query('addressId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'AddressId Code is required!', clientMessage: 'شناسه آدرس مورد نیاز است!' }), + express_validator_1.query('addressId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'AddressId Code is not valid!', clientMessage: 'شناسه آدرس معتبر نیست!' }) + ]; + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// wallet /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if ((type === 'query' && input === 'etheriumAccountAddress')) { + return [ + express_validator_1.query('etheriumAccountAddress') + .exists() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'etheriumAccountAddress is not exsist!', clientMessage: ' آدرس اکانت اتریوم نباید خالی باشد!' }) + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "etheriumAccountAddress should be string", clientMessage: 'آدرس اکانت اتریوم باید رشته باشد' }) + .isHexadecimal() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "etheriumAccountAddress should be hexadecimal", clientMessage: 'آدرس اکانت اتریوم باید هگزادسیمال باشد' }) + ]; + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// user /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if ((type === 'query' && input === 'pageNumber')) { + return [ + express_validator_1.query('pageNumber') + .exists() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'page is not exsist!', clientMessage: ' شماره صفحه نباید خالی باشد!' }) + .isInt() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "page number should be number", clientMessage: 'شماره صفحه بایذ عدد صحیح باشد' }) + ]; + } + else if (type === 'query' && input === 'interval') { + return [ + express_validator_1.query('interval').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'interval is required!', clientMessage: ' بازه مورد نیاز است!' }) + .isString() + .custom(function (i) { + return ["h", "d", "w", "m", "y"].includes(i); + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: ' interval is not valid!', clientMessage: ' بازه معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'kind') { + return [ + express_validator_1.query('kind').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'kind is required!', clientMessage: ' نوع سفارش پذیرفته شده مورد نیاز است!' }) + .isString() + .custom(function (k) { + return ["1", "2"].includes(k); + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: ' kind is not valid!', clientMessage: ' نوع سفارش پذیرفه شده معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'type') { + return [ + express_validator_1.query('type').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'type is required!', clientMessage: 'نوع سفارش مورد نیاز است!' }) + .isString() + .custom(function (k) { + return ["1", "2", "3"].includes(k); + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'type is not valid!', clientMessage: ' نوع سفارش معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'status') { + return [ + express_validator_1.query('status').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'status is required!', clientMessage: ' حالت مورد نیز است.!' }) + .isString() + .custom(function (s) { + return ["buy", "sell"].includes(s); + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: ' status is not valid!', clientMessage: ' حالت معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'RialId') { + return [ + express_validator_1.query('RialId').optional().isMongoId() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "rial id is not valid!", clientMessage: 'شناسه ریال معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'pid') { + return [ + express_validator_1.query('pid').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'pid is required!', clientMessage: 'کد پیگیری سفارش مورد نیاز است!' }), + express_validator_1.query('pid').isNumeric().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'pid is not valid!', clientMessage: 'کد پیگیری سفارش معتبر نیست!' }), + express_validator_1.query('pid').custom(function (v) { + return v.length === 11; + }).withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'pid is not valid!', clientMessage: 'کد پیگیری سفارش معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'Status') { + return [ + express_validator_1.query('Status').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Status is required!', clientMessage: 'کد وضعیت مورد نیاز است!' }), + express_validator_1.query('Status').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Status is not valid!', clientMessage: 'کد وضعیت معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'Amount') { + return [ + express_validator_1.query('Amount').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Amount is required!', clientMessage: 'مقدار خرید مورد نیاز است!' }), + express_validator_1.query('Amount').isNumeric().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Amount is not valid!', clientMessage: 'مقدار خرید معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'Authority') { + return [ + express_validator_1.query('Authority').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Authority is required!', clientMessage: 'شناسه مخصوص زرین پال مورد نیاز است!' }), + express_validator_1.query('Authority').isNumeric().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Authority is not valid!', clientMessage: 'شناسه مخصوص زرین پال معتبر نیست!' }), + express_validator_1.query('Authority').custom(function (v) { + return v.length === 36; + }).withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'authority is not valid!', clientMessage: 'شناسه مخصوص زرین پال معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'questionId') { + return [ + express_validator_1.query('questionId').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + express_validator_1.query('questionId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'orderMongoId') { + return [ + express_validator_1.query('orderMongoId').exists() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "order id fields are not valid!", clientMessage: ' شناسه سفارش ورودی موجود نیست !' }), + express_validator_1.query('orderMongoId').isMongoId() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "order id fields are not valid!", clientMessage: 'شناسه سفارش ورودی معتبر نیست!' }), + ]; + } + else if (type === 'query' && input === 'orderId') { + return [ + express_validator_1.query('orderId').exists().isFloat() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not present!", clientMessage: 'شناسه ورودی سفارش موجود نیست!' }), + express_validator_1.query('orderId') + .custom(function (v) { + return ['1', '2', '3', '4'].includes(v.toString().split('.')[1]); + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'orderIdOp') { + return [ + express_validator_1.query('orderIdOp').optional().isFloat() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not present!", clientMessage: 'شناسه ورودی سفارش موجود نیست!' }), + express_validator_1.query('orderIdOp').optional() + .custom(function (v) { + return ['1', '2', '3', '4'].includes(v.toString().split('.')[1]); + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'productId') { + return [ + express_validator_1.query('productId').exists().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is required!', clientMessage: 'شناسه محصول مورد نیاز است!' }), + express_validator_1.query('productId').isHexadecimal().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }), + express_validator_1.query('productId').isMongoId().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'phoneNumber') { + return [ + express_validator_1.query('phoneNumber').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phoneNumber's is not valid!", clientMessage: 'شماره موبایل معتبر نیست!' }), + express_validator_1.query('phoneNumber') + .custom(function (v) { + return v.length === 11 && (v[0] == '0' || v[0] == '۰') && (v[1] == '9' || v[1] == '۹') && (/^\d+$/.test(v) || /^\d+$/.test(numbersFormatter(v, 'en'))); + }) + .isLength({ min: 10, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phoneNumber's is not valid!", clientMessage: 'شماره موبایل معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'tags') { + return [ + express_validator_1.query('tags').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Tags is required!', clientMessage: 'تگ مورد نیاز است!' }), + express_validator_1.query('tags').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Tags is not valid!', clientMessage: 'تگ معتبر نیست!' }) + ]; + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// admin /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'query' && input === 'searchType') { + return [ + express_validator_1.query('searchType').exists().withMessage({ clientCode: 35, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'searchType is required!', clientMessage: 'شناسه جستجو مورد نیاز است!' }), + express_validator_1.query('searchType').isIn(['users', 'orders', 'products']).withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'searchType is not valid!', clientMessage: 'شناسه جستجو معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'fromDate') { + return [ + express_validator_1.query('fromDate').optional().custom(function (v) { + var date = new Date(v).getTime(); + return date < new Date().getTime(); + }) + .withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'fromDate is not valid!', clientMessage: 'شناسه جستجو معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'toDate') { + return [ + express_validator_1.query('toDate').optional().custom(function (v) { + var date = new Date(v).getTime(); + return !isNaN(date); + }) + .withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'toDate is not valid!', clientMessage: 'شناسه جستجو معتبر نیست!' }) + ]; + } + else if (type === 'query' && input === 'codeId') { + return [ + express_validator_1.query('codeId').exists() + .withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'toDate is not valid!', clientMessage: 'شناسه کد موجود نیست!' }), + express_validator_1.query('codeId').isMongoId() + .withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'toDate is not valid!', clientMessage: 'شناسه کد معتبر نیست!' }) + ]; + } + /// ///////////////////////////////////////// + /// //////// param ///////////////////////// + /// ///////////////////////////////////////// + else if (type === 'param' && input === 'imageName') { + return [ + express_validator_1.param('imageName').exists().withMessage({ clientCode: 41, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ImageName is required!', clientMessage: 'آدرس عکس مورد نیاز است!' }) + ]; + } + /// ///////////////////////////////////////// + /// //////// cookie ////////////////////////// + /// ///////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// service /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'cookie' && input === 'sessionId') { + return [ + express_validator_1.cookie('sessionId').exists().withMessage({ clientCode: 41, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'sessionId is required!', clientMessage: 'مشکلی پیش آمده است!' }) + ]; + } +}; +exports.validate = function (req, res, next) { + var Result = express_validator_1.validationResult(req); + if (!Result["errors"] || Result["errors"].length === 0) { + next(); + } + else { + console.log(Result["errors"]); + var error = new myError_1["default"](Result["errors"][0].msg.messageEnglish, Result["errors"][0].msg.statusCode, Result["errors"][0].msg.clientCode, Result["errors"][0].msg.clientMessage, Result["errors"][0].msg.title); + next(error); + } +}; diff --git a/server/middlewares/validation.ts b/server/middlewares/validation.ts new file mode 100755 index 0000000..497a0d5 --- /dev/null +++ b/server/middlewares/validation.ts @@ -0,0 +1,1872 @@ +import { body, param, query, validationResult, check, cookie } from 'express-validator' +import myError from '../api/myError' +import { every, isDate, isLength } from 'lodash' + +export function isEmailValid(mail) { + const re = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; + return re.test(mail); +} + +export const isValidMobilePhone = (phone) => { + return phone.length === 11 && (phone[0] === '0' || phone[0] === '۰') && (phone[1] === '9' || phone[1] === '۹') && (/^\d+$/.test(phone) || /^\d+$/.test(numbersFormatter( phone, 'en'))) +} + +const isValidDate = (d) => { + return d instanceof Date && !isNaN(d.getTime()); +} +// A helper for converting non-persian numbers to persian ones. +let arabicNumbers = ["١", "٢", "٣", "٤", "٥", "٦", "٧", "٨", "٩", "٠"], + persianNumbers = ["۱", "۲", "۳", "۴", "۵", "۶", "۷", "۸", "۹", "۰"], + englishNumbers = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0"]; + +function searchAndReplaceInNumbers(value, source, target) { + for (let i = 0, len = target.length; i < len; i++) { + value = value.replace(new RegExp(source[i], "g"), target[i]); + } + return value; +} + +export function numbersFormatter(value, to = "fa") { + value = typeof value === "number" ? String(value) : value; + if (!value) return value; + let output = value; + if (to === "fa") { + output = searchAndReplaceInNumbers(output, englishNumbers, persianNumbers); + output = searchAndReplaceInNumbers(output, arabicNumbers, persianNumbers); + } else if (to === "en") { + output = searchAndReplaceInNumbers(output, persianNumbers, englishNumbers); + output = searchAndReplaceInNumbers(output, arabicNumbers, englishNumbers); + } + return output; +} +import * as mongo from 'mongodb' +const ObjectId = mongo.ObjectID +export const userValidationRules = (type, input) => { + /// ///////////////////////////////////////// + /// //////// body ////////////////////////// + /// ///////////////////////////////////////// + +/// ///////////////////////////////////////////////////////////////////////////////// + /// //////// user /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + +// ----------- SKH ---------------- + + // ------- body -------- + + if (type === 'body' && input === 'curGivenId') { + return [ + body('curGivenId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenId is required!', clientMessage: 'شناسه ارز پیشنهادی مورد نیاز است!' }), + body('curGivenId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenId is not valid!', clientMessage: 'شناسه ارز پیشنهادی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'curGivenIdOp') { + return [ + body('curGivenIdOp').optional().isMongoId() + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenIdOp is not valid!', clientMessage: 'شناسه ارز پیشنهادی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'curGivenVal') { + return [ + body('curGivenVal').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenVal is required!', clientMessage: 'مقدار ارز پیشنهادی مورد نیاز است!' }), + body('curGivenVal').isNumeric().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenVal is not valid!', clientMessage: 'مقدار ارز پیشنهادی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'curGivenValOp') { + return [ + body('curGivenValOp').optional() + .custom((v) => { + if (!v.from && !v.to) { + return false + } else if (v.from && Number(v.from <= 0)) { + return false + } else if (v.to && Number(v.to <= 0)) { + return false + } else { + return true + } + }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curGivenValOp is not valid!', clientMessage: 'مقدار ارز پیشنهادی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'curTakenId') { + return [ + body('curTakenId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenId is required!', clientMessage: 'شناسه ارز درخواستی مورد نیاز است!' }), + body('curTakenId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenId is not valid!', clientMessage: 'شناسه ارز درخواستی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'curTakenIdOp') { + return [ + body('curTakenIdOp').optional().isMongoId() + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenIdOp is not valid!', clientMessage: 'شناسه ارز درخواستی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'curTakenVal') { + return [ + body('curTakenVal').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenVal is required!', clientMessage: 'مقدار ارز درخواستی مورد نیاز است!' }), + body('curTakenVal').isNumeric().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenVal is not valid!', clientMessage: 'مقدار ارز درخواستی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'curTakenValOp') { + return [ + body('curTakenValOp').optional() + .custom((v) => { + if (!v.from && !v.to) { + return false + } else if (v.from && Number(v.from <= 0)) { + return false + } else if (v.to && Number(v.to <= 0)) { + return false + } else { + return true + } + }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curTakenValOp is not valid!', clientMessage: 'مقدار ارز پیشنهادی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'expDate') { + return [ + body('expDate').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'expDate is required!', clientMessage: 'تاریخ انقضای پیشنهاد مورد نیاز است!' }), + body('expDate').isDate().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'expDate is not valid!', clientMessage: 'تاریخ انقضای پیشنهاد معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'expDateOp') { + return [ + body('expDateOp').optional() + .custom((v) => { + if (!v.from && !v.to) { + return false + } else if (v.from && isValidDate(v.from)) { + return false + } else if (v.to && isValidDate(v.to)) { + return false + } else if (v.from > v.to) { + return false + } else { + return true + } }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'expDateOp is not valid!', clientMessage: 'تاریخ انقضا پیشنهادی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'created_atOp') { + return [ + body('created_atOp').optional() + .custom((v) => { + if (!v.from && !v.to) { + return false + } else if (v.from && isValidDate(v.from)) { + return false + } else if (v.to && isValidDate(v.to)) { + return false + } else if (v.from > v.to) { + return false + } else { + return true + } + }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'created_atOp is not valid!', clientMessage: 'تاریخ تولید پیشنهادی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'currency') { + return [ + body('currency').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'currency is required!', clientMessage: 'ارز مورد نیاز است!' }), + body('currency').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'currency is not valid!', clientMessage: 'ارز معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'quantity') { + return [ + body('quantity').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'quantity is required!', clientMessage: 'تعداد درخواستی ارز مورد نیاز است!' }), + body('quantity').isNumeric().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'quantity is not valid!', clientMessage: 'تعداد درخواستی ارز معتبر نیست!' }) + ] + } if (type === 'body' && input === 'offerIdOp') { + return [ + body('offerIdOp').optional().isUUID() + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'offerId is not valid!', clientMessage: 'شناسه پیشنهاد معتبر نیست!' }) + ] + } + + // ------- Query -------- + + if (type === 'query' && input === 'offerId') { + return [ + query('offerId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'offerId is required!', clientMessage: 'شناسه پیشنهاد مورد نیاز است!' }), + query('offerId').isUUID().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'offerId is not valid!', clientMessage: 'شناسه پیشنهاد معتبر نیست!' }) + ] + } + +// -------------------------------- + + // -------------------------------- / + + + + +else if((type === 'query' && input === 'currencyId')) { + return [ + query('currencyId') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "curreny id can not method not ", clientMessage: ' ارز نمی‌تواند خال باشد.' }) + .isMongoId() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curreny id is not valid!', clientMessage: 'ارز معتبر نیست.!' }), + ] + }else if (type === 'body' && input === 'name') { + return [ + body('name') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "name cn not be empty", clientMessage: 'نام نمی تواند خالی باشد' }) + .isString() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'name is not valid!', clientMessage: ' نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'currencyName') { + return [ + body('currencyName') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "name cn not be empty", clientMessage: 'نام نمی تواند خالی باشد' }) + .isString() + .custom((curName) => { + + return (curName === 'BITCOIN') || (curName === 'RIAL') || (curName === 'TRON' ) || (curName === 'ETHEREUM') + + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'currency name info is not valid!', clientMessage: ' نام معتبر نیست!' }) + + ] + } else if((type === 'body' && input === 'persianName')) { + return [ + + body('persianName') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "name cn not be empty", clientMessage: 'نام فارسی نمی تواند خالی باشد' }) + .isString() + .custom((perName) => { + return perName === 'اتریوم' || perName === 'ترون' || perName === 'بیت کوین' || perName === 'ریال' + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'persian name is not valid !', clientMessage: ' نام فارسی معتبر نیست!' }), + ] + } else if((type === 'body' && input === 'abName')) { + return [ + body('abName') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "short name can not be empty", clientMessage: 'مخفف نمی تواند خالی باشد' }) + .isString() + .custom((shortName) => { + return shortName === 'ETH' || shortName === 'BTC' || shortName === 'TRX' || shortName === 'IRR' + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'short name is not valid!', clientMessage: ' مخفف معتبر نیست!' }), + ] + } else if((type === 'body' && input === 'currencyId')) { + return [ + body('currencyId') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "curreny id can not method not ", clientMessage: ' ارز نمی‌تواند خال باشد.' }) + .isMongoId() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curreny id is not valid!', clientMessage: 'ارز معتبر نیست.!' }), + ] + } else if((type === 'body' && input === 'currencyValue')) { + return [ + body('currencyValue') + .exists() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'curreny value is not exsist!', clientMessage: ' مقدار نمی تواند خالی باشد!' }) + .isNumeric() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "currency value should be number", clientMessage: 'مقدار ارز بایذ عدد باشد' }) + .custom((v) => { + return v >= 0 + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'the value should be positive!', clientMessage: 'مقدار باید مثبت باشد' }) + + ] + } else if((type === 'body' && input === 'receiverUserId')) { + return [ + body('receiverUserId') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: " receiver User Id can not be empty", clientMessage: ' شناسه گیرنده نمی تواند خالی باشد ' }) + .isMongoId() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'receiver User Id is not valid!', clientMessage: 'شناسه گیرنده معتبر نیست' }) + ] + } else if((type === 'body' && input === 'receiverUsername')) { + return [ + body('receiverUsername') + .exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: " receiver Username can not be empty", clientMessage: ' شناسه گیرنده نمی تواند خالی باشد ' }) + .custom((v) => { + return isEmailValid(v) || isValidMobilePhone(v) + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'receiver Username is not valid!', clientMessage: 'شناسه گیرنده معتبر نیست' }) + ] + } + + + + + + + + + + + + + + + + + + + + + + + + + + + + + /// ///////////////////////////////////////// + /// //////// query ////////////////////////// + /// ///////////////////////////////////////// + +/// ///////////////////////////////////////////////////////////////////////////////// + /// //////// user /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + + + else if (type === 'query' && input === 'uuid') { + return [ + query('uuid').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'uuid is required!', clientMessage: 'شناسه منحصربفرد پیشنهاد مورد نیاز است!' }), + query('uuid').isUUID().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'uuid is not valid!', clientMessage: 'شناسه منحصربفرد پیشنهاد معتبر نیست!' }) + ] + } + + + + + + + + + + + + + + + + + + + + else if (type === 'body' && input === 'title') { + return [ + body('title').optional().isString().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'title is not valid!', clientMessage: 'تیتر معتبر نیست!' }), + ] + } + else if (type === 'body' && input === 'body') { + return [ + body('body').exists().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'body is not present!', clientMessage: 'بدنه نظر موجود نیست!' }), + body('body').isString().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'body is not valid!', clientMessage: 'بدنه معتبر نیست!' }), + + ] + } + else if (type === 'body' && input === 'rate') { + return [ + body('rate').optional().isNumeric().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'rate is not valid!', clientMessage: 'امتیاز معتبر نیست!' }), + + ] + } + + else if (type === 'body' && input === 'titleOp') { + return [ + body('titleOp').optional().isString().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'title is not valid!', clientMessage: 'تیتر معتبر نیست!' }), + ] + } + else if (type === 'body' && input === 'bodyOp') { + return [ + body('bodyOp').optional().isString().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'body is not valid!', clientMessage: 'بدنه نظر معتبر نیست!' }), + + ] + } + else if (type === 'body' && input === 'rateOp') { + return [ + body('rateOp').optional().isNumeric().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'rate is not valid!', clientMessage: 'امتیاز معتبر نیست!' }), + + ] + } + else if (type === 'body' && input === 'reviewId') { + return [ + body('reviewId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is required!', clientMessage: 'شناسه نظر مورد نیاز است!' }), + body('reviewId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is not valid!', clientMessage: 'شناسه نظر معتبر نیست!' }) + ] + } + else if (type === 'body' && input === 'question') { + return [ + body('question').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'question is required!', clientMessage: 'سوال مورد نیاز است!' }), + body('question').isString().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'question is not valid!', clientMessage: 'سوال صحیح معتبر نیست!' }) + ] + } + else if (type === 'body' && input === 'profileName') { + return [ + body('profileName').optional().isString().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'profileName is not valid!', clientMessage: 'نام معتبر نیست!' }), + ] + } + + else if (type === 'body' && input === 'profileLastName') { + return [ + body('profileLastName').optional().exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'profileLastName is required!', clientMessage: 'نام خانوادگی معتبر نیست!' }), + // body('question').isString().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'question is not valid!', clientMessage: 'سوال صحیح معتبر نیست!' }) + ] + } + + else if (type === 'body' && input === 'profileBirthdate') { + console.log(body('profileBirthdate')) + return [ + body('profileBirthdate').optional() + .custom((v) => { + return v.year && v.month && v.day + }) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'profileBirthdate is required!', clientMessage: 'سن مورد نیاز است' }), + ] + } + + else if (type === 'body' && input === 'profilePhoneNumber') { + return [ + body('profilePhoneNumber').optional().isString().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'profilePhoneNumber is required!', clientMessage: 'شماره تلفن مورد نیاز است!' }), + ] + } + + else if (type === 'body' && input === 'question') { + return [ + body('question').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'question is required!', clientMessage: 'سوال مورد نیاز است!' }), + body('question').isString().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'question is not valid!', clientMessage: 'سوال صحیح معتبر نیست!' }) + ] + } + + + + + + + + + + + + + + + + + + + + + + + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// service /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'body' && input === 'productId') { + return [ + body('productId').exists().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is required!', clientMessage: 'شناسه محصول مورد نیاز است!' }), + body('productId').isHexadecimal().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }), + body('productId').isMongoId().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'quantity') { + return [ + body('quantity').exists().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Quantity is required!', clientMessage: 'تعداد محصول مورد نیاز است!' }), + body('quantity').isInt({ min: 1 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Quantity is not valid!', clientMessage: 'تعداد محصول معتبر نیست!' }), + ] + } else if (type === 'body' && input === 'isExisted') { + return [ + body('isExisted').optional().isBoolean().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'isExisted is not valid!', clientMessage: 'شناسه وجود معتبر نیست!' }), + ] + } + else if (type === 'body' && input === 'rate') { + return [ + body('rate').optional().isInt({ min: 1, max: 5 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Rate is not valid!', clientMessage: 'شناسه امتیازدهی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productRate') { + return [ + body('productRate').optional().isInt({ min: 1, max: 5 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productRate is not valid!', clientMessage: 'شناسه امتیازدهی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'brands') { + return [ + body('brands').optional().isArray({ min: 1 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'brands is not valid!', clientMessage: 'شناسه برند معتبر نیست!' }), + ] + } else if (type === 'body' && input === 'categoryBrands') { + return [ + body('categoryBrands').optional().isArray({ min: 1 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryBrands is not valid!', clientMessage: 'شناسه برند معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'priceObject') { + return [ + body('priceObject').optional().custom((value) => { return (value.from >= 0 && value.to) }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'priceObject are not valid!', clientMessage: 'مقادیر معتبر نیستند!' }), + body('priceObject').optional().custom((value) => { return value.from < value.to }).withMessage({ clientCode: 128, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'priceObject are not valid!', clientMessage: 'مقادیر معتبر نیستند!' }), + body('priceObject.from').optional().isInt({ min: 0 }).withMessage({ clientCode: 101, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'priceObject are not valid!', clientMessage: 'مقادیر معتبر نیستند!' }), + body('priceObject.to').optional().isInt({ min: 0 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'priceObject are not valid!', clientMessage: 'مقادیر معتبر نیستند!' }), + ] + } else if (type === 'body' && input === 'offPercentOp') { + return [ + body('offPercentOp').optional().isInt({ min: 1 }).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'OffPercent is not valid!', clientMessage: 'شناسه تخفیف معتبر نیست!' }) + ] + } + else if (type === 'body' && input === 'offPercent') { + return [ + + body('offPercent').exists().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'OffPercent is not present!', clientMessage: 'شناسه تخفیف لازم است!' }), + body('offPercent').isInt({min : 1}).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'OffPercent is not valid!', clientMessage: 'شناسه تخفیف معتبر نیست!' }) + + ] + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// auth /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'body' && input === 'email') { + return [ + body('email').exists().withMessage({ clientCode: 7, statusCode: 422, messageEnglish: 'Email and Password are required!', clientMessage: 'ایمیل و گذرواژه مورد نیاز است!' }), + body('email').isEmail().withMessage({ clientCode: 8, statusCode: 422, messageEnglish: 'Email or Password are not valid!', clientMessage: 'ایمیل یا گذرواژه معتبر نیست' }) + ] + } else if (type === 'body' && input === 'password') { + return [ + body('password').exists().withMessage({ clientCode: 7, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Email and Password are required!', clientMessage: 'ایمیل و گذرواژه مورد نیاز است!' }), + body('password').isString().isLength({ min: 6 }).withMessage({ clientCode: 8, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Email or Password are not valid!', clientMessage: 'ایمیل یا گذرواژه معتبر نیست!' }) + + ] + } + else if (type === 'body' && input === 'newPassword') { + return [ + body('newPassword').exists().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Passwords are required!', clientMessage: 'گذرواژه ها مورد نیاز است!' }), + body('newPassword').isString().isLength({ min: 6 }).withMessage({ clientCode: 80, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'New password is not strong!', clientMessage: 'گذرواژه به اندازه کافی قوی انتخاب نشده است!' }) + ] + } + else if (type === 'body' && input === 'passwordConfirm') { + return [ + body('passwordConfirm').exists().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Passwords are required!', clientMessage: 'گذرواژه ها مورد نیاز است!' }), + body('passwordConfirm').isString().isLength({ min: 6 }).withMessage({ clientCode: 80, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'New password is not strong!', clientMessage: 'گذرواژه به اندازه کافی قوی انتخاب نشده است!' }) + ] + } else if (type === 'body' && input === 'name') { + return [ + body('name').exists().withMessage({ clientCode: 76, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Name is required!', clientMessage: 'نام مورد نیاز است!' }), + body('name').isString().isLength({ min: 1 }).withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Name is not valid!', clientMessage: 'نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'lastName') { + return [ + body('lastName').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'LastName is required!', clientMessage: 'نام خانوادگی مورد نیاز است!' }), + body('lastName').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'LastName is not valid!', clientMessage: 'نام خانوادگی معتبر نیست!' }) + ] + } + else if (type === 'body' && input === 'phoneNumber') { + return [ + body('phoneNumber').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phoneNumber", clientMessage: ' شماره تلفن ورودی معتبر نیست!' }) + .isLength({ min: 8, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phoneNumber", clientMessage: ' آشماره تلفن ورودی معتبر نیست!' }), + ] + } + + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// admin /////////////////////////////////////////////////////////////// + /// //////////////////////////////////////////////////////////////////////////////z + else if (type === 'body' && input === 'orderOrderStatus') { + return [ + // body('orderOrderStatus').optional().custom((v) => { return (v.status) }) + // .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'orderOrderStatus is required!', clientMessage: ' حالت ورودی سفارش معتبر نیست!' }), + // body('orderOrderStatus').optional() + // .custom((v) => { return Object.keys(v).every((i) => { return ['status', 'date'].includes(i) }) }) + // .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderStatus is not valid!", clientMessage: ' حالت ورودی سفارش معتبر نیست!' }), + body('orderOrderStatus').optional().equals('Canceled') + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderStatus is not valid!", clientMessage: ' حالت ورودی سفارش معتبر نیست!' }), + // body('orderOrderStatus.status').optional().isIn(['Pending', 'Successful', 'Failed', 'Canceled', 'Edited']) + // .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderStatus's fields are not valid!", clientMessage: ' حالت ورودی سفارش معتبر نیست!' }), + // body('orderOrderStatus.date').optional().custom(isDate) + // .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderStatus's fields are not valid!", clientMessage: ' حالت ورودی سفارش معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'orderAddress') { + return [ + body('orderAddress').optional() + .custom((v) => { return (v.phone || v.mobilePhone || v.city || v.address || v.province || v.postalCode) }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + body('orderAddress') + .optional() + .custom((v) => { + return Object.keys(v) + .every((i) => { return ['phone', 'mobilePhone', 'city', 'address', 'province', 'postalCode'].includes(i) }) + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + body('orderAddress.phone').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 8, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + body('orderAddress.mobilePhone').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 10, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + body('orderAddress.city').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 2, max: 20 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + body('orderAddress.address').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 1, max: 100 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + body('orderAddress.province').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 2, max: 20 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + body('orderAddress.postalCode').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }) + .isLength({ min: 10, max: 10 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderAddress's fields are not valid!", clientMessage: ' آدرس ورودی سفارش معتبر نیست!' }), + ] + } else if (type === 'body' && input === 'orderDelivery') { + return [ + body('orderDelivery').optional().custom((v) => { return (v.status || v.date || v.code) }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }), + body('orderDelivery').optional() + .custom((v) => { + return Object.keys(v) + .every((i) => { return ['status', 'date', 'code'].includes(i) }) + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }), + body('orderDelivery.status').optional().isIn(['Sent', 'Received', 'Failed','Unknown']) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }), + body('orderDelivery.code').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }) + .isLength({ min: 1, max: 15 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }), + body('orderDelivery.price').optional().isInt({ min: 0 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }), + body('orderDelivery.date').optional().custom((v)=>{ + let date = new Date(v).getTime(); + return date < new Date().getTime() + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderDelivery's fields are not valid!", clientMessage: 'وضعیت ارسال ورودی سفارش معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'orderOrderId') { + return [ + body('orderOrderId').exists() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }), + + body('orderOrderId') .custom((v) => { + return (v.toString().indexOf(".1") > -1||(v.toString().indexOf(".2")> -1)) + + } + ) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'orderItems') { + return [ + body('orderItems').optional() + .custom((v) => { + let existanceArray = [] + return v.every((f) => { + if (existanceArray.includes(f.product.toString())) { + return false + } + existanceArray.push(f.product.toString()) + return Object.keys(f).every((i) => { + if (i == 'product') { return ObjectId.isValid(f.product) } + else if (i == 'quantity') { return (Number.isInteger(Number(f.quantity)) && Number(f.quantity) >= 0) } + else { return false } + } + ) + }) + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderItems's fields are not valid!", clientMessage: 'تعداد ورودی سفارش معتبر نیست!' }) + ] + } + + else if (type === 'body' && input === 'province') { + return [ + body('province').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Province is required!', clientMessage: 'نام استان مورد نیاز است!' }), + body('province').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Province is not valid!', clientMessage: 'نام استان معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'title') { + return [ + body('title').optional().isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'title is not valid!', clientMessage: 'عنوان آدرس معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'district') { + return [ + body('district').optional().isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'district is not valid!', clientMessage: 'منطقه شهری آدرس معتبر نیست!' }), + body('district').optional().isIn([ + 'منطقه ۱۱', 'منطقه ۱۰', 'منطقه ۹' ,'منطقه ۸','منطقه ۷','منطقه ۶','منطقه ۵','منطقه ۴','منطقه ۳','منطقه ۲','منطقه ۱', + 'منطقه ۲۲','منطقه ۲۱','منطقه ۲۰','منطقه ۱۹','منطقه ۱۸','منطقه ۱۷','منطقه ۱۶','منطقه ۱۵','منطقه ۱۴','منطقه ۱۳','منطقه ۱۲' + ]) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'district is not valid!', clientMessage: 'منطقه شهری آدرس معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'city') { + return [ + body('city').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'City is required!', clientMessage: 'نام شهر مورد نیاز است!' }), + body('city').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'City is not valid!', clientMessage: 'نام شهر معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'address') { + return [ + body('address').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Address is required!', clientMessage: 'آدرس مورد نیاز است!' }), + body('address').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Address is not valid!', clientMessage: 'آدرس معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'postalCode') { + return [ + body('postalCode').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PostalCode is required!', clientMessage: 'کد پستی مورد نیاز است!' }), + body('postalCode') + .custom((v) => { + return v && v.length === 10 && (/^\d+$/.test(v) || /^\d+$/.test(numbersFormatter( v, 'en'))) + }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PostalCode is not valid!', clientMessage: 'کد پستی معتبر نیست!' }) + + ] + } + + else if (type === 'body' && input === 'phone') { + return [ + body('phone').optional() + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phone's is not valid!", clientMessage: 'شماره تلفن معتبر نیست!' }), + body('phone').optional() + .isLength({ min: 5, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phone's is not valid!", clientMessage: 'شماره تلفن معتبر نیست!' }), + ] + } + else if (type === 'body' && input === 'mobilePhone') { + return [ + body('mobilePhone').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "MobilePhone's is not valid!", clientMessage: 'شماره موبایل معتبر نیست!' }), + body('mobilePhone') + .custom((v) => { + return v.length === 11 && (v[0] == '0' || v[0] == '۰') && (v[1] == '9' || v[1] == '۹') && (/^\d+$/.test(v) || /^\d+$/.test(numbersFormatter( v, 'en'))) + }) + .isLength({ min: 10, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "MobilePhone's is not valid!", clientMessage: 'شماره موبایل معتبر نیست!' }), + ] + } else if (type === 'body' && input === 'addressId') { + return [ + body('addressId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'AddressId Code is required!', clientMessage: 'شناسه آدرس مورد نیاز است!' }), + body('addressId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'AddressId Code is not valid!', clientMessage: 'شناسه آدرس معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'paymentMethod') { + return [ + body('paymentMethod').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PaymentMethod Code is required!', clientMessage: 'نحوه پرداخت مورد نیاز است!' }), + body('paymentMethod').isIn(['Cash', 'Online', 'FireBox', 'ChargeCapsule']).withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PaymentMethod Code is not valid!', clientMessage: 'نحوه پرداخت معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'offCodeId') { + return [ + body('offCodeId').optional().isString().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'OffCodeId Code is required!', clientMessage: 'نام کد مورد معتبر نیست!' }), + body('offCodeId').optional().isLength({ min: 1 }).withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'OffCodeId Code is not valid!', clientMessage: 'نام کد معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'filterQuantity') { + return [ + body('filterQuantity').optional() + .custom((v) => { + return v.from && v.to && typeof(Number(v.from)) === 'number' && typeof(Number(v.to)) === 'number' && v.from < v.to + }) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'filterQuantity Code is required!', clientMessage: 'فیلتر تعداد معتبر نیست!' }), + ] + } else if (type === 'body' && input === 'filterCategory') { + return [ + body('filterCategory').optional() + .isString() + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'filterCategory Code is required!', clientMessage: 'فیلتر دسته بندی معتبر نیست!' }), + body('filterCategory').optional() + .isLength({ min: 1 }) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'filterCategory Code is required!', clientMessage: 'فیلتر دسته بندی معتبر نیست!' }), + ] + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// admin /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'body' && input === 'reviewIds') { + return [ + body('reviewIds').isArray({ min: 1 }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is not valid!', clientMessage: 'شناسه نظر معتبر نیست!' }), + body('reviewIds') + .custom((r) => { + r.every((i) => { + return i.isMongoId() + }) + }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is not valid!', clientMessage: 'شناسه نظر معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'qAndAs') { + return [ + body('qAndAs').isArray({ min: 1 }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'QAndAs Code are not valid!', clientMessage: 'شناسه های سوالات معتبر نیستند!' }), + body('qAndAs') + .custom((r) => { + r.every((i) => { + return i.isMongoId() + }) + }) + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'QAndAs Code are not valid!', clientMessage: 'شناسه های سوالات معتبر نیستند!' }) + ] + } + else if (type === 'body' && input === 'englishName') { + return [ + body('englishName').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'englishName is required!', clientMessage: 'نام انگلیسی مورد نیاز است!' }), + body('englishName').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'englishName is not valid!', clientMessage: 'نام انگلیسی معتبر نیست!' }), + body('englishName').isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'englishName is not valid!', clientMessage: 'نام انگلیسی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productEnglishName') { + return [ + body('productEnglishName').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productEnglishName is not valid!', clientMessage: 'نام انگلیسی معتبر نیست!' }), + body('productEnglishName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productEnglishName is not valid!', clientMessage: 'نام انگلیسی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'tags') { + return [ + body('tags').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Tags is required!', clientMessage: 'تگ مورد نیاز است!' }), + body('tags').isArray({ min: 1, max: 10 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Tags is not valid!', clientMessage: 'تگ معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'tagsOp') { + return [ + body('tagsOp') + .optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'TagsOp is not valid!', clientMessage: 'تگ معتبر نیست!' }), + body('tagsOp') + .optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'TagsOp is not valid!', clientMessage: 'تگ معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productTags') { + return [ + body('productTags').optional().isArray({ min: 1, max: 10 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productTags is not valid!', clientMessage: 'تگ معتبر نیست!' }), + body('productTags').optional().custom((v) => { return v.every((i) => { return typeof i === 'string' }) }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productTags is not valid!', clientMessage: 'تگ معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'brand') { + return [ + body('brand').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'brand is required!', clientMessage: 'نام برند مورد نیاز است!' }), + body('brand').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'brand is not valid!', clientMessage: 'نام برند معتبر نیست!' }), + body('brand').isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'brand is not valid!', clientMessage: 'نام برند معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productBrand') { + return [ + body('productBrand').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productBrand is not valid!', clientMessage: 'نام برند معتبر نیست!' }), + body('productBrand').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productBrand is not valid!', clientMessage: 'نام برند معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productCode') { + return [ + body('productCode').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCode is required!', clientMessage: 'کد محصول مورد نیاز است!' }), + body('productCode').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCode is not valid!', clientMessage: 'کد محصول معتبر نیست!' }), + body('productCode').isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCode is not valid!', clientMessage: 'کد محصول معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'subCategory') { + return [ + body('subCategory').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'subCategory is required!', clientMessage: 'زیر دسته بندی مورد نیاز است!' }), + body('subCategory').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'subCategory is not valid!', clientMessage: 'زیر دسته بندی معتبر نیست!' }), + body('subCategory').isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'subCategory is not valid!', clientMessage: 'زیر دسته بندی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productProductCode') { + return [ + body('productProductCode').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productProductCode is not valid!', clientMessage: 'کد محصول معتبر نیست!' }), + body('productProductCode').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productProductCode is not valid!', clientMessage: 'کد محصول معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'categoryCode') { + return [ + body('categoryCode').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCode is required!', clientMessage: 'کد دسته بندی مورد نیاز است!' }), + body('categoryCode').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productCategoryCode') { + return [ + body('productCategoryCode').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCategoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }), + body('productCategoryCode').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCategoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'categoryCategoryCode') { + return [ + body('categoryCategoryCode').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCategoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }), + body('categoryCategoryCode').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCategoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'categoryId') { + return [ + body('categoryId').optional().isHexadecimal() + .withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CategoryId is not valid!', clientMessage: 'شناسه دسته بندی معتبر نیست!' }), + body('categoryId').optional().isMongoId() + .withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CategoryId is not valid!', clientMessage: 'شناسه دسته بندی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'image') { + return [ + body('image').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'image is required!', clientMessage: 'آدرس عکس مورد نیاز است!' }), + body('image').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'image is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + body('image').isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'image is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + body('image').custom((v) => { return v.split('.').length === 2 && ObjectId.isValid(v.split('.')[0]) }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'image is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productImage') { + return [ + body('productImage').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + body('productImage').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + body('productImage').optional().custom((v) => { return v.split('.').length === 2 && ObjectId.isValid(v.split('.')[0]) }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'categoryImage') { + return [ + body('categoryImage').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + body('categoryImage').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + body('categoryImage').optional().custom((v) => { return v.split('.').length === 2 && ObjectId.isValid(v.split('.')[0]) }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryImage is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'categoryDescription') { + return [ + body('categoryDescription').optional().isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryDescription is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }), + body('categoryDescription').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryDescription is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'cardGallery') { + return [ + body('cardGallery').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'cardGallery is required!', clientMessage: 'آدرس گالری مورد نیاز است!' }), + body('cardGallery').isArray({ min: 1, max: 3 }) + .withMessage({ clientCode: 80, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'cardGallery is not valid!', clientMessage: 'آدرس گالری معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productCardGallery') { + return [ + body('productCardGallery').optional().isArray({ min: 1, max: 3 }) + .withMessage({ clientCode: 80, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCardGallery is not valid!', clientMessage: 'آدرس گالری معتبر نیست!' }), + body('productCardGallery').optional().custom((v) => { return every((i) => { return i.split('.').length === 2 && ObjectId.isValid(i.split('.')[0]) }) }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCardGallery is not valid!', clientMessage: 'آدرس عکس معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'price') { + return [ + body('price').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'price required!', clientMessage: 'قیمت مورد نیاز است!' }), + body('price').isInt({ min: 1 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'price are not valid!', clientMessage: 'قیمت معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'newPrice') { + return [ + body('newPrice').optional().isInt({ min: 1 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'newPrice are not valid!', clientMessage: 'قیمت جدید معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productPrice') { + return [ + body('productPrice').optional().isInt({ min: 1 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productPrice are not valid!', clientMessage: 'قیمت معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productNewPrice') { + return [ + body('productNewPrice').optional().isInt({ min: 1 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productNewPrice are not valid!', clientMessage: 'قیمت جدید معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'description') { + return [ + body('description').optional().isString().isLength({ min: 1, max: 1000 }).withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Body are not valid!', clientMessage: 'توضیح بیشتر معتبر نیست!' }), + body('gallery').optional().isArray({ min: 1, max: 20 }).withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Gallery are not valid!', clientMessage: 'گالری معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productDescription') { + return [ + body('productDescription').optional() + .isString() + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Body are not valid!', clientMessage: 'توضیح بیشتر معتبر نیست!' }) + .isLength({ max: 1000 }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Body are not valid!', clientMessage: 'توضیح بیشتر معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'productGallery') { + return [ + body('productGallery').optional().isArray({ max: 20 }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Gallery are not valid!', clientMessage: 'گالری معتبر نیست!' }) + ] + } + + else if (type === 'body' && input === 'cardProperties') { + return [ + body('cardProperties').optional().isArray({ max: 10 }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CardProperties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }), + body('cardProperties') + .optional() + .custom((v) => { + return v.every((i) => { return i.key && typeof i.key === 'string' && i.value && typeof i.value === 'string' }) + }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CardProperties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }) + ] + } else if (type === 'body' && input === 'properties') { + return [ + body('properties').optional().isArray({ max: 10 }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Properties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }), + body('properties') + .optional() + .custom((v) => { + return v.every((i) => { + i.title && i.content && Array.isArray(i.content) && i.content.length > 0 + // return i.content.every((j) => { return j.key && typeof j.key === 'string' && j.value && typeof j.value === 'string' }) + }) + }) + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Properties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }) + ] + } else if (type === 'body' && input === 'accessLevels') { + return [ + body('accessLevels').optional().notEmpty().withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'AccessLevels are not valid!', clientMessage: 'سطوح دسترسی معتبر نیستند!' }) + ] + } else if (type === 'body' && input === 'productCardProperties') { + return [ + body('productCardProperties').optional().isArray({ min: 1 }).withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCardProperties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }) + ] + } else if (type === 'body' && input === 'productProperties') { + return [ + body('productProperties').optional().isArray({ min: 1 }).withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productProperties are not valid!', clientMessage: 'ویژگی های کارت معتبر نیستند!' }) + ] + } else if (type === 'body' && input === 'productAccessLevels') { + return [ + body('productAccessLevels').optional().notEmpty() + .withMessage({ clientCode: 15, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productAccessLevels are not valid!', clientMessage: 'سطوح دسترسی معتبر نیستند!' }) + ] + } else if (type === 'body' && input === 'commercialhName') { + return [ + body('commercialhName').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CommercialhName is required!', clientMessage: 'نام تجاری مورد نیاز است!' }), + body('commercialhName').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CommercialhName is not valid!', clientMessage: 'نام تجاری معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'searchItems') { + return [ + body('searchItems').optional().isArray({ min: 1, max: 7 }).withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'searchItems is not valid!', clientMessage: 'آیتم های جستجو معتبر نیستند!' }) + ] + } else if (type === 'body' && input === 'categorySearchItems') { + return [ + body('categorySearchItems').optional().isArray({ min: 1, max: 7 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categorySearchItems is not valid!', clientMessage: 'آیتم های جستجو معتبر نیستند!' }) + ] + } else if (type === 'body' && input === '_id') { + return [ + body('_id').exists() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: '_id is required!', clientMessage: 'شناسه مورد نیاز است!' }), + body('_id').isHexadecimal() + .withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: '_id is not valid!', clientMessage: 'شناسه معتبر نیست!' }), + body('_id').isMongoId() + .withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: '_id is not valid!', clientMessage: 'شناسه معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'managerName') { + return [ + body('managerName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerName is not valid!', clientMessage: 'نام معتبر نیست!' }), + body('managerName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerName is not valid!', clientMessage: 'نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'managerLastName') { + return [ + body('managerLastName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerLastName is not valid!', clientMessage: 'نام معتبر نیست!' }), + body('managerLastName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerLastName is not valid!', clientMessage: 'نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'managerEmail') { + return [ + body('managerEmail').optional().isEmail() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerEmail is not valid!', clientMessage: 'نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'managerIsActive') { + return [ + body('managerIsActive').optional().isBoolean() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerIsActive is not valid!', clientMessage: 'نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'managerRole') { + return [ + body('managerRole').optional().isIn(['Supporter', 'Manager', 'Deliveryman']) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'managerRole is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }) + ] + } else if (type === 'body' && input === 'supporterName') { + return [ + body('supporterName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterName is not valid!', clientMessage: 'نام معتبر نیست!' }), + body('supporterName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterName is not valid!', clientMessage: 'نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'supporterLastName') { + return [ + body('supporterLastName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterLastName is not valid!', clientMessage: 'نام معتبر نیست!' }), + body('supporterLastName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterLastName is not valid!', clientMessage: 'نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'supporterEmail') { + return [ + body('supporterEmail').optional().isEmail() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterEmail is not valid!', clientMessage: 'نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'supporterIsActive') { + return [ + body('supporterIsActive').optional().isBoolean() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterIsActive is not valid!', clientMessage: 'نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'supporterRole') { + return [ + body('supporterRole').optional().isIn(['Supporter', 'Manager', 'Deliveryman']) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'supporterRole is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }) + ] + } else if (type === 'body' && input === 'deliverymanName') { + return [ + body('deliverymanName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanName is not valid!', clientMessage: 'نام معتبر نیست!' }), + body('deliverymanName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanName is not valid!', clientMessage: 'نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'deliverymanLastName') { + return [ + body('deliverymanLastName').optional().isString() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanLastName is not valid!', clientMessage: 'نام خانوادگی معتبر نیست!' }), + body('deliverymanLastName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanLastName is not valid!', clientMessage: 'نام خانوادگی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'deliverymanEmail') { + return [ + body('deliverymanEmail').optional().isEmail() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanEmail is not valid!', clientMessage: 'نام کاربری معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'deliverymanIsActive') { + return [ + body('deliverymanIsActive').optional().isBoolean() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanIsActive is not valid!', clientMessage: 'مجوز فعالیت معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'deliverymanRole') { + return [ + body('deliverymanRole').optional().isIn(['Supporter', 'Manager', 'Deliveryman']) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliverymanRole is not valid!', clientMessage: 'نقش معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'userIsActive') { + return [ + body('userIsActive').optional().isBoolean() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'userIsActive is not valid!', clientMessage: 'نام معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'userUserType') { + return [ + body('userUserType').optional().isIn(['Normal', 'Builder', 'Vip']) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'userUserType is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }) + ] + } + else if (type === 'body' && input === 'isActive') { + return [ + body('isActive').exists() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'IsActive is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }), + body('isActive').isBoolean() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'IsActive is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }) + ] + } + else if (type === 'body' && input === 'role') { + return [ + body('role').exists() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Role is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }), + body('role').isIn(['Supporter', 'Manager']) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Role is not valid!', clientMessage: 'ورودی های ویرایش محصول معتبر نیستند!' }) + ] + } else if (type === 'body' && input === 'quantity') { + return [ + body('quantity').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Quantity is required!', clientMessage: 'تعداد مورد نیاز است!' }), + body('quantity').isInt({ min: 0 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Quantity are not valid!', clientMessage: 'تعداد معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'regionNum') { + return [ + body('regionNum').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'RegionNum is required!', clientMessage: 'شماره منطقه مورد نیاز است!' }), + body('regionNum').isInt({ min: 0, max: 22 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'RegionNum are not valid!', clientMessage: 'شماره منطقه معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'shippingPrice') { + return [ + body('shippingPrice').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ShippingPrice is required!', clientMessage: 'قیمت ارسال مورد نیاز است!' }), + body('shippingPrice').isInt({ min: 0 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ShippingPrice are not valid!', clientMessage: 'قیمت ارسال معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'userId') { + return [ + body('userId').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'UserId is required!', clientMessage: 'شناسه مورد نیاز است!' }), + ] + } else if (type === 'body' && input === 'id') { + return [ + body('id').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + body('id').isUUID().withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ] + } + //what was this? + // else if (type === 'body' && input === 'c') { + // return [ + // body('id').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + // body('id').isUUID().withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + // ] + // } + else if (type === 'body' && input === 'verificationCode') { + return [ + body('verificationCode').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + body('verificationCode').isString().isLength({ min: 4, max: 4 }).withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ] + } + else if (type === 'body' && input === 'answer') { + return [ + body('answer').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + body('answer').isString().isLength({ min: 1, max: 200 }).withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'questionId') { + return [ + body('questionId').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + body('questionId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'username') { + return [ + body('username').exists().withMessage({ clientCode: 11, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Username address is required!', clientMessage: 'نام کاربری مورد نیاز است!' }), + body('username') + .custom((v) => { + return isEmailValid(v) || isValidMobilePhone(v) + }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Username address is not valid!', clientMessage: 'نام کاربری معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'queries') { + return [ + body('queries').exists().withMessage({ clientCode: 38, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Queries are required!', clientMessage: 'جستجوها مورد نیاز است!' }), + body('queries').isArray({ min: 1 }).withMessage({ clientCode: 38, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Queries are not valid!', clientMessage: 'جستجوها معتبر نیستند!' }) + ] + } else if (type === 'body' && input === 'commercialName') { + return [ + body('commercialName').exists() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'commercialName required!', clientMessage: 'نام تجاری مورد نیاز است!' }), + body('commercialName').isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'commercialName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'categoryName') { + return [ + body('categoryName').optional().isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }), + body('categoryName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }) + + ] + } else if (type === 'body' && input === 'productName') { + return [ + body('productName').optional().isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }), + body('productName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'categoryCommercialName') { + return [ + body('categoryCommercialName').optional().isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCommercialName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }), + body('categoryCommercialName').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCommercialName are not valid!', clientMessage: 'نام تجاری معتبر نیست!' }) + + ] + } else if (type === 'body' && input === 'code') { + return [ + body('code').exists() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف مورد نیاز است!' }), + body('code').isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }), + body('code').isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }) + + ] + } else if (type === 'body' && input === 'type') { + return [ + body('type').exists() + .withMessage({ clientCode: 52, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Type is required!', clientMessage: 'نوع مورد نیاز است!' }), + body('type').isIn(['ALL_ALL', 'ALL_CATEGORY', 'ALL_PRODUCT', 'ONE_ALL', 'ONE_CATEGORY', 'ONE_PRODUCT']) + .withMessage({ clientCode: 53, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Type is not valid!', clientMessage: 'نوع معتبر نیست!' }), + ] + } else if (type === 'body' && input === 'usernameOp') { + return [ + body('usernameOp').optional() + .custom((v) => { + return isEmailValid(v) || isValidMobilePhone(v) + }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'UsernameOp is not valid!', clientMessage: 'آدرس ایمیل معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'minPrice') { + return [ + body('minPrice').optional().isInt({ min: 1 }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'minPrice is not valid!', clientMessage: 'حداقل میزان خرید معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'maxOff') { + return [ + body('maxOff').optional().isInt({ min: 1 }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'maxOff is not valid!', clientMessage: 'حداکثر تخفیف روی یک آیتم معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'maxTotalOff') { + return [ + body('maxTotalOff').optional().isInt({ min: 1 }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'maxTotalOff is not valid!', clientMessage: 'حداکثر تخفیف در یک خرید معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'offPercent') { + return [ + body('offPercent').exists() + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'offPercent is not valid!', clientMessage: 'درصد تخفیف مورد نیاز است!' }), + body('offPercent').isInt({ min: 1 }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'offPercent is not valid!', clientMessage: 'درصد تخفیف معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'quantityOp') { + return [ + body('quantityOp').optional().isInt({ min: 1 }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'quantity is not valid!', clientMessage: 'تعداد مجاز استفاده از کد تخفیف معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'expiredDate') { + return [ + body('expiredDate').exists() + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'expiredDate is not valid!', clientMessage: 'تاریخ انقضا مورد نیاز است!' }), + body('expiredDate').custom((v)=>{ + + let date = new Date(v).getTime(); + console.log('date is ' , date, 'and the diffrence is ' , new Date().getTime()-date ) + return date > new Date().getTime() + }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'expiredDate is not valid!', clientMessage: 'تاریخ انقضا معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'codeOp') { + return [ + body('codeOp').optional().isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }), + body('codeOP').optional().isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }) + + ] + } else if (type === 'body' && input === 'date') { + return [ + body('date').optional().custom(v => { return (v.from && v.from === v.from.getTime()) || (v.to && v.to === v.from.getTime()) }) + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Date is not valid!', clientMessage: 'تاریخ انقضا معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'isValid') { + return [ + body('isValid').optional().isBoolean() + .withMessage({ clientCode: 12, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'isValid is not valid!', clientMessage: 'پرچم نمایش تمام کدها معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'orderId') { + return [ + body('orderId').exists().isFloat() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not present!", clientMessage: 'شناسه ورودی سفارش موجود نیست!' }), + body('orderId') + .custom((v) => { + return ['1', '2', '3', '4'].includes(v.toString().split('.')[1]) + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }) + ] + } + else if (type === 'body' && input === 'paymentMethodOp') { + return [ + body('paymentMethodOp').optional().isString().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PaymentMethod Code is not valid!', clientMessage: 'نحوه پرداخت معتبر نیست!' }), + body('paymentMethodOp').optional().isIn(['Cash', 'Online']).withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'PaymentMethod Code is not valid!', clientMessage: 'نحوه پرداخت معتبر نیست!' }) + ] + } else if (type === 'body' && input === 'deliveryStatusOp') { + return [ + body('deliveryStatusOp').optional().isString() + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliver status is not valid!', clientMessage: 'وضعیت ارسال معتبر نیست' }), + body('deliveryStatusOp').optional().isIn(['Sent', 'Received', 'Failed','Unknown']) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliver status is not valid!', clientMessage: 'وضعیت ارسال معتبر نیست' }), + ] + } else if (type === 'body' && input === 'deliveryStatus') { + return [ + body('deliveryStatus').exists() + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliver status is not valid!', clientMessage: 'وضعیت ارسال معتبر نیست' }), + body('deliveryStatus').isIn(['Sent', 'Received', 'Failed','Unknown']) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'deliver status is not valid!', clientMessage: 'وضعیت ارسال معتبر نیست' }), + ] + } else if (type === 'body' && input === 'usernameOp') { + return [ + body('usernameOp').optional().isEmail() + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'username is not valid!', clientMessage: 'وضعیت یوزرنیم ارسالی معتبر نیست' }), + ] + } + else if (type === 'body' && input === 'orderStatusOp') { + return [ + body('orderStatusOp').optional().isString() + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'order status is not valid!', clientMessage: 'وضعیت سفارش معتبر نیست' }), + body('orderStatusOp').optional().isIn(['Successful', 'Failed', 'Reverted','Canceled','Pending','Edited']) + .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'order status is not valid!', clientMessage: 'وضعیت سفارش معتبر نیست' }), + ] + } + else if (type === 'body' && input=== 'dateOp'){ + return [ + + // body('dateOp').optional() + // .custom((v) => { + + // return Object.keys(v).length ===2}) + // .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'date object is not valid!', clientMessage: 'وضعیت تاریخ های ورودی معتبر نیست' }), + body('dateOp').optional() + .custom((v) => { + let from = new Date(v.from).getTime(); + let to = new Date(v.to).getTime(); + if ( to > from){ + return true} + else return false + }) .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'date object is not valid!', clientMessage: 'وضعیت تاریخ های ورودی معتبر نیست' }), + ] + + } + else if (type === 'body' && input=== 'priceOp'){ + return [ + body('priceOp').optional() + .custom((v) => { + return Object.keys(v) + .every((i) => { return ['from', 'to'].includes(i) }) + }) .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'price object is not valid!', clientMessage: 'وضعیت قیمت های ورودی معتبر نیست' }), + body('priceOp').optional() + .custom((v) => { + + if ( v["to"] > v["from"]){ + return true} + else return false + }) .withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'price object is not valid!', clientMessage: 'وضعیت قیمت های ورودی معتبر نیست' }), + ] + +} + +else if (type === 'body' && input === 'orderIdOp') { + return [ + body('orderIdOp').optional().isFloat() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }), + + body('orderIdOp').optional().custom((v) => { + return (v.toString().indexOf(".1") > -1||(v.toString().indexOf(".2")> -1)) + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }) + + ] +} +else if (type === 'body' && input === 'isExcel') { + return [ + body('isExcel').optional().isBoolean().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'excel flag is invalid!', clientMessage: 'وضعیت خروجی اکسل صحیح نیست' }), + ] +} + + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// ticket /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'body' && input === 'ticketSubject') { + return [ + body('ticketSubject').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'subject is required!', clientMessage: 'متن موضوع مورد نیاز است!' }), + body('ticketSubject').isString().isLength({ min: 8, max: 1500 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'subject is not valid!', clientMessage: 'متن موضوع معتبر نیست!' }) + ] + } + else if (type === 'body' && input === 'ticketType') { + return [ + body('ticketType').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketType is required!', clientMessage: 'نوع تیکت مورد نیاز است!' }), + body('ticketType').isString().custom((k) => { + return ["Task","Issue"].includes(k) + }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketType is not valid!', clientMessage: 'نوع تیکت معتبر نیست!' }) + ] + } + else if (type === 'body' && input === 'ticketIssue') { + return [ + body('ticketIssue').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketIssue is required!', clientMessage: 'متن مشکل مورد نیاز است!' }), + body('ticketIssue').isString().isLength({ min: 8, max: 1500 }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketIssue is not valid!', clientMessage: 'متن مشکل معتبر نیست!' }) + ] + } + + else if (type === 'body' && input === 'ticketId') { + return [ + body('ticketId').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is required!', clientMessage: 'کد تیکت مورد نیاز است!' }), + body('ticketId').isMongoId().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is not valid!', clientMessage: 'کد تیکت معتبر نیست!' }) + ] + } + else if (type === 'body' && input === 'ticketIdArray') { + return [ + body('ticketIdArray').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is required!', clientMessage: 'کد تیکت مورد نیاز است!' }), + body('ticketIdArray').isArray().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is required!', clientMessage: 'کد تیکت مورد نیاز است!' }), + + body('ticketIdArray') .custom((r) => { + return r.every((i) => { + console.log("i is ", i) + return ObjectId.isValid(i) + }) + }). + withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is not valid!', clientMessage: 'کد تیکت معتبر نیست!' }) + ] + } + else if (type === 'body' && input === 'ticketComment') { + return [ + body('ticketComment').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketComment is required!', clientMessage: 'متن تیکت مورد نیاز است!' }), + body('ticketComment').isString().isLength({ min: 8, max: 1500 }).withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketComment is not valid!', clientMessage: 'متن تیکت معتبر نیست!' }) + ] + } + + else if (type === 'body' && input === 'ticketPriority') { + return [ + body('ticketPriority').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketPriority is required!', clientMessage: 'متن الویت مورد نیاز است!' }), + body('ticketPriority').isString().custom((k) => { + return ["Urgent","Normal","Critical"].includes(k) + }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticketPriority is not valid!', clientMessage: ' الویت معتبر نیست!' }) + ] + } + + + /// ///////////////////////////////////////// + /// //////// query ///////////////////////// + /// ///////////////////////////////////////// + + + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// ticket /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'query' && input === 'ticketId') { + return [ + query('ticketId').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is required!', clientMessage: 'کد تیکت مورد نیاز است!' }), + query('ticketId').isMongoId().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket id is not valid!', clientMessage: 'کد تیکت معتبر نیست!' }) + ] + } + else if (type === 'query' && input === 'ticketStatus') { + return [ + query('ticketStatus').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket status is required!', clientMessage: 'کد تیکت مورد نیاز است!' }), + query('ticketStatus').isString().custom((k) => { + return ["0", "1","2","3"].includes(k) + }) + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ticket status is not valid!', clientMessage: 'وضعیت تیکت معتبر نیست!' }) + ] + } + + + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// admin /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + + else if (type === 'query' && input === 'categoryCode') { + return [ + query('categoryCode').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCode is required!', clientMessage: 'کد دسته بندی مورد نیاز است!' }), + query('categoryCode').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'categoryCode is not valid!', clientMessage: 'کد دسته بندی معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'productCode') { + return [ + query('productCode').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCode is required!', clientMessage: 'کد محصول مورد نیاز است!' }), + query('productCode').isString().isLength({ min: 1 }).withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'productCode is not valid!', clientMessage: 'کد محصول معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'code') { + return [ + query('code').exists() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف مورد نیاز است!' }), + query('code').isString() + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }), + query('code').isLength({ min: 1 }) + .withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Code are not valid!', clientMessage: 'نام کد تخفیف معتبر نیست!' }) + + ] + } + + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// service /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + else if (type === 'query' && input === 'productId') { + return [ + query('productId').exists().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is required!', clientMessage: 'شناسه محصول مورد نیاز است!' }), + query('productId').isHexadecimal().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }), + query('productId').isMongoId().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'categoryId') { + return [ + query('categoryId').optional().isHexadecimal().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CategoryId is not valid!', clientMessage: 'شناسه دسته بندی معتبر نیست!' }), + query('categoryId').optional().isMongoId().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'CategoryId is not valid!', clientMessage: 'شناسه دسته بندی معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'sortBy') { + return [ + query('sortBy').optional().isIn(['1', '2', '3', '4', '5']).withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'SortBy is not valid!', clientMessage: 'شناسه مرتب سازی معتبر نیست!' }), + ] + } else if (type === 'query' && input === 'id') { + return [ + query('id').exists().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Transaction Id is required!', clientMessage: 'شناسه تراکنش مورد نیاز است!' }), + query('id').isHexadecimal().withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Transaction Id is not valid!', clientMessage: 'شناسه تراکنش معتبر نیست!' }), + query('id').isString().isLength({ min: 128, max: 128 }).withMessage({ clientCode: 10, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Transaction Id is not valid!', clientMessage: 'شناسه تراکنش معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'username') { + return [ + query('username').exists().withMessage({ clientCode: 70, statusCode: 422, clientMessage: 'Username is required!' }), + query('username') + .custom((v) => { + return isEmailValid(v) || isValidMobilePhone(v) + }) + .withMessage({ clientCode: 71, statusCode: 422, clientMessage: 'Username is not valid!' }) + ] + } else if (type === 'query' && input === 'string') { + return [ + query('string').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + query('string').isUUID().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'page') { + return [ + query('page').exists().withMessage({ clientCode: 33, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Page is required!', clientMessage: 'عدد صفحه مورد نیاز است!' }), + query('page').isInt().isLength({ min: 1, max: 2 }).withMessage({ clientCode: 34, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Page is not valid!', clientMessage: 'عدد صفحه معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'location') { + return [ + query('location').exists().withMessage({ clientCode: 35, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Location is required!', clientMessage: 'مبدا درخواست نشانه لوکیشن را ندارد!' }), + query('location').isIn(['none', 'home', 'dashboard', 'wallet', 'offers', 'all']).withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'Location is not valid!', clientMessage: 'نشانه لوکیشن معتبر نیست!' }) + ] + } + + + else if (type === 'query' && input === 'reviewId') { + return [ + query('reviewId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is required!', clientMessage: 'شناسه نظر مورد نیاز است!' }), + query('reviewId').isMongoId() + .withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ReviewId Code is not valid!', clientMessage: 'شناسه نظر معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'addressId') { + return [ + query('addressId').exists().withMessage({ clientCode: 4, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'AddressId Code is required!', clientMessage: 'شناسه آدرس مورد نیاز است!' }), + query('addressId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'AddressId Code is not valid!', clientMessage: 'شناسه آدرس معتبر نیست!' }) + ] + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// wallet /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// +else if((type === 'query' && input === 'etheriumAccountAddress')) { + return [ + query('etheriumAccountAddress') + .exists() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'etheriumAccountAddress is not exsist!', clientMessage: ' آدرس اکانت اتریوم نباید خالی باشد!' }) + .isString() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "etheriumAccountAddress should be string", clientMessage: 'آدرس اکانت اتریوم باید رشته باشد' }) + .isHexadecimal() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "etheriumAccountAddress should be hexadecimal", clientMessage: 'آدرس اکانت اتریوم باید هگزادسیمال باشد' }) + ] + + } + + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// user /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// +else if((type === 'query' && input === 'pageNumber')) { + return [ + query('pageNumber') + .exists() + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'page is not exsist!', clientMessage: ' شماره صفحه نباید خالی باشد!' }) + .isInt() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "page number should be number", clientMessage: 'شماره صفحه بایذ عدد صحیح باشد' }) + ] + + } else if (type === 'query' && input === 'interval') { + return [ + query('interval').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'interval is required!', clientMessage: ' بازه مورد نیاز است!' }) + .isString() + .custom((i) => { + return ["h", "d","w","m","y"].includes(i) + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: ' interval is not valid!', clientMessage: ' بازه معتبر نیست!' }) + ] + + + }else if (type === 'query' && input === 'kind') { + return [ + query('kind').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'kind is required!', clientMessage: ' نوع سفارش پذیرفته شده مورد نیاز است!' }) + .isString() + .custom((k) => { + return ["1", "2"].includes(k) + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: ' kind is not valid!', clientMessage: ' نوع سفارش پذیرفه شده معتبر نیست!' }) + ] +}else if (type === 'query' && input === 'type') { + return [ + query('type').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'type is required!', clientMessage: 'نوع سفارش مورد نیاز است!' }) + .isString() + .custom((k) => { + return ["1", "2", "3"].includes(k) + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'type is not valid!', clientMessage: ' نوع سفارش معتبر نیست!' }) + ] + + }else if (type === 'query' && input === 'status') { + return [ + query('status').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'status is required!', clientMessage: ' حالت مورد نیز است.!' }) + .isString() + .custom((s) => { + return ["buy", "sell"].includes(s) + }) + .withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: ' status is not valid!', clientMessage: ' حالت معتبر نیست!' }) + ] + + + } else if (type === 'query' && input === 'RialId') { + return [ + query('RialId').optional().isMongoId() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "rial id is not valid!", clientMessage: 'شناسه ریال معتبر نیست!' }) + ] + + + + + + }else if (type === 'query' && input === 'pid') { + return [ + query('pid').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'pid is required!', clientMessage: 'کد پیگیری سفارش مورد نیاز است!' }), + query('pid').isNumeric().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'pid is not valid!', clientMessage: 'کد پیگیری سفارش معتبر نیست!' }), + query('pid').custom((v)=>{ + return v.length === 11 + }).withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'pid is not valid!', clientMessage: 'کد پیگیری سفارش معتبر نیست!' }) + + ] + } + else if (type === 'query' && input === 'Status') { + return [ + query('Status').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Status is required!', clientMessage: 'کد وضعیت مورد نیاز است!' }), + query('Status').isString().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Status is not valid!', clientMessage: 'کد وضعیت معتبر نیست!' }) + ] + } + else if (type === 'query' && input === 'Amount') { + return [ + query('Amount').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Amount is required!', clientMessage: 'مقدار خرید مورد نیاز است!' }), + query('Amount').isNumeric().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Amount is not valid!', clientMessage: 'مقدار خرید معتبر نیست!' }) + ] + } + else if (type === 'query' && input === 'Authority') { + return [ + query('Authority').exists().withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Authority is required!', clientMessage: 'شناسه مخصوص زرین پال مورد نیاز است!' }), + query('Authority').isNumeric().withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Authority is not valid!', clientMessage: 'شناسه مخصوص زرین پال معتبر نیست!' }), + query('Authority').custom((v)=>{ + return v.length === 36 + }).withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'authority is not valid!', clientMessage: 'شناسه مخصوص زرین پال معتبر نیست!' }) + + ] + } + else if (type === 'query' && input === 'questionId') { + return [ + query('questionId').exists().withMessage({ clientCode: 4, statusCode: 422, messageEnglish: 'Verification Code is required!', clientMessage: 'کد راستی آزمایی مورد نیاز است!' }), + query('questionId').isMongoId().withMessage({ clientCode: 5, statusCode: 422, messageEnglish: 'Verification Code is not valid!', clientMessage: 'کد راستی آزمایی معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'orderMongoId') { + return [ + query('orderMongoId').exists() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "order id fields are not valid!", clientMessage: ' شناسه سفارش ورودی موجود نیست !' }), + query('orderMongoId').isMongoId() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "order id fields are not valid!", clientMessage: 'شناسه سفارش ورودی معتبر نیست!' }), + ] + } else if (type === 'query' && input === 'orderId') { + return [ + query('orderId').exists().isFloat() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not present!", clientMessage: 'شناسه ورودی سفارش موجود نیست!' }), + query('orderId') + .custom((v) => { + return ['1', '2', '3', '4'].includes(v.toString().split('.')[1]) + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'orderIdOp') { + return [ + query('orderIdOp').optional().isFloat() + .withMessage({ clientCode: 77, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not present!", clientMessage: 'شناسه ورودی سفارش موجود نیست!' }), + query('orderIdOp').optional() + .custom((v) => { + return ['1', '2', '3', '4'].includes(v.toString().split('.')[1]) + }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "orderOrderId's fields are not valid!", clientMessage: 'شناسه ورودی سفارش معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'productId') { + return [ + query('productId').exists().withMessage({ clientCode: 27, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is required!', clientMessage: 'شناسه محصول مورد نیاز است!' }), + query('productId').isHexadecimal().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }), + query('productId').isMongoId().withMessage({ clientCode: 28, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ProductId is not valid!', clientMessage: 'شناسه محصول معتبر نیست!' }) + ] + } + else if (type === 'query' && input === 'phoneNumber') { + return [ + query('phoneNumber').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phoneNumber's is not valid!", clientMessage: 'شماره موبایل معتبر نیست!' }), + query('phoneNumber') + .custom((v) => { + return v.length === 11 && (v[0] == '0' || v[0] == '۰') && (v[1] == '9' || v[1] == '۹') && (/^\d+$/.test(v) || /^\d+$/.test(numbersFormatter( v, 'en'))) + }) + .isLength({ min: 10, max: 11 }) + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: "phoneNumber's is not valid!", clientMessage: 'شماره موبایل معتبر نیست!' })] + + } else if (type === 'query' && input === 'tags') { + return [ + query('tags').exists() + .withMessage({ clientCode: 78, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Tags is required!', clientMessage: 'تگ مورد نیاز است!' }), + query('tags').isString() + .withMessage({ clientCode: 79, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'Tags is not valid!', clientMessage: 'تگ معتبر نیست!' }) + ] + } + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// admin /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + + else if (type === 'query' && input === 'searchType') { + return [ + query('searchType').exists().withMessage({ clientCode: 35, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'searchType is required!', clientMessage: 'شناسه جستجو مورد نیاز است!' }), + query('searchType').isIn(['users', 'orders', 'products']).withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'searchType is not valid!', clientMessage: 'شناسه جستجو معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'fromDate') { + return [ + query('fromDate').optional().custom((v)=>{ + let date = new Date(v).getTime() + return date < new Date().getTime() + }) + .withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'fromDate is not valid!', clientMessage: 'شناسه جستجو معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'toDate') { + return [ + query('toDate').optional().custom((v)=>{ + let date = new Date(v).getTime() + return !isNaN(date) + }) + .withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'toDate is not valid!', clientMessage: 'شناسه جستجو معتبر نیست!' }) + ] + } else if (type === 'query' && input === 'codeId') { + return [ + query('codeId').exists() + .withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'toDate is not valid!', clientMessage: 'شناسه کد موجود نیست!' }), + query('codeId').isMongoId() + .withMessage({ clientCode: 36, statusCode: 422, messageEnglish: 'toDate is not valid!', clientMessage: 'شناسه کد معتبر نیست!' }) + ] + } + + /// ///////////////////////////////////////// + /// //////// param ///////////////////////// + /// ///////////////////////////////////////// + + else if (type === 'param' && input === 'imageName') { + return [ + param('imageName').exists().withMessage({ clientCode: 41, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'ImageName is required!', clientMessage: 'آدرس عکس مورد نیاز است!' }) + ] + } + /// ///////////////////////////////////////// + /// //////// cookie ////////////////////////// + /// ///////////////////////////////////////// + + /// ///////////////////////////////////////////////////////////////////////////////// + /// //////// service /////////////////////////////////////////////////////////////// + /// ///////////////////////////////////////////////////////////////////////////////// + + else if (type === 'cookie' && input === 'sessionId') { + return [ + cookie('sessionId').exists().withMessage({ clientCode: 41, statusCode: 422, title: 'خطا رخ داد', messageEnglish: 'sessionId is required!', clientMessage: 'مشکلی پیش آمده است!' }) + ] + } +} + + +export const validate = (req, res, next) => { + const Result = validationResult(req) + if (!Result["errors"] || Result["errors"].length === 0) { + next() + } else { + console.log(Result["errors"]) + const error = new myError( + Result["errors"][0].msg.messageEnglish, + Result["errors"][0].msg.statusCode, + Result["errors"][0].msg.clientCode, + Result["errors"][0].msg.clientMessage, + Result["errors"][0].msg.title, + ) + next(error) + } +} + + + + diff --git a/server/package-lock.json b/server/package-lock.json new file mode 100755 index 0000000..99fee9f --- /dev/null +++ b/server/package-lock.json @@ -0,0 +1,11376 @@ +{ + "name": "server", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/core": { + "version": "7.11.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.11.6.tgz", + "integrity": "sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.11.6", + "@babel/helper-module-transforms": "^7.11.0", + "@babel/helpers": "^7.10.4", + "@babel/parser": "^7.11.5", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.11.5", + "@babel/types": "^7.11.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.11.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.6.tgz", + "integrity": "sha512-DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA==", + "dev": true, + "requires": { + "@babel/types": "^7.11.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/helper-function-name": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", + "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", + "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz", + "integrity": "sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==", + "dev": true, + "requires": { + "@babel/types": "^7.11.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz", + "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-module-transforms": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz", + "integrity": "sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@babel/helper-replace-supers": "^7.10.4", + "@babel/helper-simple-access": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/template": "^7.10.4", + "@babel/types": "^7.11.0", + "lodash": "^4.17.19" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz", + "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==", + "dev": true + }, + "@babel/helper-replace-supers": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz", + "integrity": "sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.10.4", + "@babel/helper-optimise-call-expression": "^7.10.4", + "@babel/traverse": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-simple-access": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz", + "integrity": "sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==", + "dev": true, + "requires": { + "@babel/template": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", + "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "dev": true, + "requires": { + "@babel/types": "^7.11.0" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", + "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "dev": true + }, + "@babel/helpers": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.10.4.tgz", + "integrity": "sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==", + "dev": true, + "requires": { + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/highlight": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.11.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.5.tgz", + "integrity": "sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q==", + "dev": true + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/runtime": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", + "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", + "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/parser": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/traverse": { + "version": "7.11.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.5.tgz", + "integrity": "sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.11.5", + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/parser": "^7.11.5", + "@babel/types": "^7.11.5", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.19" + }, + "dependencies": { + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + } + } + }, + "@babel/types": { + "version": "7.11.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.5.tgz", + "integrity": "sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + }, + "@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dev": true, + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + } + }, + "@dabh/diagnostics": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.2.tgz", + "integrity": "sha512-+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q==", + "requires": { + "colorspace": "1.1.x", + "enabled": "2.0.x", + "kuler": "^2.0.0" + } + }, + "@ethersproject/abi": { + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.0.9.tgz", + "integrity": "sha512-ily2OufA2DTrxkiHQw5GqbkMSnNKuwZBqKsajtT0ERhZy1r9w2CpW1bmtRMIGzaqQxCdn/GEoFogexk72cBBZQ==", + "requires": { + "@ethersproject/address": "^5.0.4", + "@ethersproject/bignumber": "^5.0.7", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/constants": "^5.0.4", + "@ethersproject/hash": "^5.0.4", + "@ethersproject/keccak256": "^5.0.3", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/properties": "^5.0.3", + "@ethersproject/strings": "^5.0.4" + } + }, + "@ethersproject/abstract-provider": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.0.7.tgz", + "integrity": "sha512-NF16JGn6M0zZP5ZS8KtDL2Rh7yHxZbUjBIHLNHMm/0X0BephhjUWy8jqs/Zks6kDJRzNthgmPVy41Ec0RYWPYA==", + "requires": { + "@ethersproject/bignumber": "^5.0.7", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/networks": "^5.0.3", + "@ethersproject/properties": "^5.0.3", + "@ethersproject/transactions": "^5.0.5", + "@ethersproject/web": "^5.0.6" + } + }, + "@ethersproject/abstract-signer": { + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.0.9.tgz", + "integrity": "sha512-CM5UNmXQaA03MyYARFDDRjHWBxujO41tVle7glf5kHcQsDDULgqSVpkliLJMtPzZjOKFeCVZBHybTZDEZg5zzg==", + "requires": { + "@ethersproject/abstract-provider": "^5.0.4", + "@ethersproject/bignumber": "^5.0.7", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/properties": "^5.0.3" + } + }, + "@ethersproject/address": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.0.8.tgz", + "integrity": "sha512-V87DHiZMZR6hmFYmoGaHex0D53UEbZpW75uj8AqPbjYUmi65RB4N2LPRcJXuWuN2R0Y2CxkvW6ArijWychr5FA==", + "requires": { + "@ethersproject/bignumber": "^5.0.10", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/keccak256": "^5.0.3", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/rlp": "^5.0.3" + } + }, + "@ethersproject/base64": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.0.6.tgz", + "integrity": "sha512-HwrGn8YMiUf7bcdVvB4NJ+eWT0BtEFpDtrYxVXEbR7p/XBSJjwiR7DEggIiRvxbualMKg+EZijQWJ3az2li0uw==", + "requires": { + "@ethersproject/bytes": "^5.0.4" + } + }, + "@ethersproject/basex": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.0.6.tgz", + "integrity": "sha512-Y/8dowRxBF3bsKkqEp7XN4kcFFQ0o5xxP1YyopfqkXejaOEGiD7ToQdQ0pIZpAJ5GreW56oFOTDDSO6ZcUCNYg==", + "requires": { + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/properties": "^5.0.3" + } + }, + "@ethersproject/bignumber": { + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.0.12.tgz", + "integrity": "sha512-mbFZjwthx6vFlHG9owXP/C5QkNvsA+xHpDCkPPPdG2n1dS9AmZAL5DI0InNLid60rQWL3MXpEl19tFmtL7Q9jw==", + "requires": { + "@ethersproject/bytes": "^5.0.8", + "@ethersproject/logger": "^5.0.5", + "bn.js": "^4.4.0" + } + }, + "@ethersproject/bytes": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.0.8.tgz", + "integrity": "sha512-O+sJNVGzzuy51g+EMK8BegomqNIg+C2RO6vOt0XP6ac4o4saiq69FnjlsrNslaiMFVO7qcEHBsWJ9hx1tj1lMw==", + "requires": { + "@ethersproject/logger": "^5.0.5" + } + }, + "@ethersproject/constants": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.0.7.tgz", + "integrity": "sha512-cbQK1UpE4hamB52Eg6DLhJoXeQ1plSzekh5Ujir1xdREdwdsZPPXKczkrWqBBR0KyywJZHN/o/hj0w8j7scSGg==", + "requires": { + "@ethersproject/bignumber": "^5.0.7" + } + }, + "@ethersproject/contracts": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.0.8.tgz", + "integrity": "sha512-PecBL4vnsrpuks2lzzkRsOts8csJy338HNDKDIivbFmx92BVzh3ohOOv3XsoYPSXIHQvobF959W+aSk3RCZL/g==", + "requires": { + "@ethersproject/abi": "^5.0.5", + "@ethersproject/abstract-provider": "^5.0.4", + "@ethersproject/abstract-signer": "^5.0.4", + "@ethersproject/address": "^5.0.4", + "@ethersproject/bignumber": "^5.0.7", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/constants": "^5.0.4", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/properties": "^5.0.3" + } + }, + "@ethersproject/hash": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.0.8.tgz", + "integrity": "sha512-Qay01tcFyFreYjSMt82rOQGMfQDmLm1sj3iNNO1BhrVf840xgBZuJ7gBATERzAjTuTCHUHw9BuGwxErJUS95yg==", + "requires": { + "@ethersproject/abstract-signer": "^5.0.6", + "@ethersproject/address": "^5.0.5", + "@ethersproject/bignumber": "^5.0.8", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/keccak256": "^5.0.3", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/properties": "^5.0.4", + "@ethersproject/strings": "^5.0.4" + } + }, + "@ethersproject/hdnode": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.0.7.tgz", + "integrity": "sha512-89tphqlji4y/LNE1cSaMQ3hrBtJ4lO1qWGi2hn54LiHym85DTw+zAKbA8QgmdSdJDLGR/kc9VHaIPQ+vZQ2LkQ==", + "requires": { + "@ethersproject/abstract-signer": "^5.0.4", + "@ethersproject/basex": "^5.0.3", + "@ethersproject/bignumber": "^5.0.7", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/pbkdf2": "^5.0.3", + "@ethersproject/properties": "^5.0.3", + "@ethersproject/sha2": "^5.0.3", + "@ethersproject/signing-key": "^5.0.4", + "@ethersproject/strings": "^5.0.4", + "@ethersproject/transactions": "^5.0.5", + "@ethersproject/wordlists": "^5.0.4" + } + }, + "@ethersproject/json-wallets": { + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.0.9.tgz", + "integrity": "sha512-EWuFvJd8nu90dkmJwmJddxOYCvFvMkKBsZi8rxTme2XEZsHKOFnybVkoL23u7ZtApuEfTKmVcR2PTwgZwqDsKw==", + "requires": { + "@ethersproject/abstract-signer": "^5.0.4", + "@ethersproject/address": "^5.0.4", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/hdnode": "^5.0.4", + "@ethersproject/keccak256": "^5.0.3", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/pbkdf2": "^5.0.3", + "@ethersproject/properties": "^5.0.3", + "@ethersproject/random": "^5.0.3", + "@ethersproject/strings": "^5.0.4", + "@ethersproject/transactions": "^5.0.5", + "aes-js": "3.0.0", + "scrypt-js": "3.0.1" + } + }, + "@ethersproject/keccak256": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.0.6.tgz", + "integrity": "sha512-eJ4Id/i2rwrf5JXEA7a12bG1phuxjj47mPZgDUbttuNBodhSuZF2nEO5QdpaRjmlphQ8Kt9PNqY/z7lhtJptZg==", + "requires": { + "@ethersproject/bytes": "^5.0.4", + "js-sha3": "0.5.7" + } + }, + "@ethersproject/logger": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.0.8.tgz", + "integrity": "sha512-SkJCTaVTnaZ3/ieLF5pVftxGEFX56pTH+f2Slrpv7cU0TNpUZNib84QQdukd++sWUp/S7j5t5NW+WegbXd4U/A==" + }, + "@ethersproject/networks": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.0.6.tgz", + "integrity": "sha512-2Cg1N5109zzFOBfkyuPj+FfF7ioqAsRffmybJ2lrsiB5skphIAE72XNSCs4fqktlf+rwSh/5o/UXRjXxvSktZw==", + "requires": { + "@ethersproject/logger": "^5.0.5" + } + }, + "@ethersproject/pbkdf2": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.0.6.tgz", + "integrity": "sha512-CUYciSxR/AaCoKMJk3WUW+BDhR41G3C+O9lOeZ4bR1wDhLKL2Z8p0ciF5XDEiVbmI4CToW6boVKybeVMdngRrg==", + "requires": { + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/sha2": "^5.0.3" + } + }, + "@ethersproject/properties": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.0.6.tgz", + "integrity": "sha512-a9DUMizYhJ0TbtuDkO9iYlb2CDlpSKqGPDr+amvlZhRspQ6jbl5Eq8jfu4SCcGlcfaTbguJmqGnyOGn1EFt6xA==", + "requires": { + "@ethersproject/logger": "^5.0.5" + } + }, + "@ethersproject/providers": { + "version": "5.0.17", + "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.0.17.tgz", + "integrity": "sha512-bJnvs5X7ttU5x2ekGJYG7R3Z+spZawLFfR0IDsbaMDLiCwZOyrgk+VTBU7amSFLT0WUhWFv8WwSUB+AryCQG1Q==", + "requires": { + "@ethersproject/abstract-provider": "^5.0.4", + "@ethersproject/abstract-signer": "^5.0.4", + "@ethersproject/address": "^5.0.4", + "@ethersproject/basex": "^5.0.3", + "@ethersproject/bignumber": "^5.0.7", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/constants": "^5.0.4", + "@ethersproject/hash": "^5.0.4", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/networks": "^5.0.3", + "@ethersproject/properties": "^5.0.3", + "@ethersproject/random": "^5.0.3", + "@ethersproject/rlp": "^5.0.3", + "@ethersproject/sha2": "^5.0.3", + "@ethersproject/strings": "^5.0.4", + "@ethersproject/transactions": "^5.0.5", + "@ethersproject/web": "^5.0.6", + "bech32": "1.1.4", + "ws": "7.2.3" + }, + "dependencies": { + "ws": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.3.tgz", + "integrity": "sha512-HTDl9G9hbkNDk98naoR/cHDws7+EyYMOdL1BmjsZXRUjf7d+MficC4B7HLUPlSiho0vg+CWKrGIt/VJBd1xunQ==" + } + } + }, + "@ethersproject/random": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.0.6.tgz", + "integrity": "sha512-8nsVNaZvZ9OD5NXfzE4mmz8IH/1DYJbAR95xpRxZkIuNmfn6QlMp49ccJYZWGhs6m0Zj2+FXjx3pzXfYlo9/dA==", + "requires": { + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/logger": "^5.0.5" + } + }, + "@ethersproject/rlp": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.0.6.tgz", + "integrity": "sha512-M223MTaydfmQSsvqAl0FJZDYFlSqt6cgbhnssLDwqCKYegAHE16vrFyo+eiOapYlt32XAIJm0BXlqSunULzZuQ==", + "requires": { + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/logger": "^5.0.5" + } + }, + "@ethersproject/sha2": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.0.6.tgz", + "integrity": "sha512-30gypDLkfkP5gE3llqi0jEuRV8m4/nvzeqmqMxiihZ7veFQHqDaGpyFeHzFim+qGeH9fq0lgYjavLvwW69+Fkw==", + "requires": { + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/logger": "^5.0.5", + "hash.js": "1.1.3" + }, + "dependencies": { + "hash.js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz", + "integrity": "sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.0" + } + } + } + }, + "@ethersproject/signing-key": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.0.7.tgz", + "integrity": "sha512-JYndnhFPKH0daPcIjyhi+GMcw3srIHkQ40hGRe6DA0CdGrpMfgyfSYDQ2D8HL2lgR+Xm4SHfEB0qba6+sCyrvg==", + "requires": { + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/properties": "^5.0.3", + "elliptic": "6.5.3" + } + }, + "@ethersproject/solidity": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.0.7.tgz", + "integrity": "sha512-dUevKUZ06p/VMLP/+cz4QUV+lA17NixucDJfm0ioWF0B3R0Lf+6wqwPchcqiAXlxkNFGIax7WNLgGMh4CkQ8iw==", + "requires": { + "@ethersproject/bignumber": "^5.0.7", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/keccak256": "^5.0.3", + "@ethersproject/sha2": "^5.0.3", + "@ethersproject/strings": "^5.0.4" + } + }, + "@ethersproject/strings": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.0.7.tgz", + "integrity": "sha512-a+6T80LvmXGMOOWQTZHtGGQEg1z4v8rm8oX70KNs55YtPXI/5J3LBbVf5pyqCKSlmiBw5IaepPvs5XGalRUSZQ==", + "requires": { + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/constants": "^5.0.4", + "@ethersproject/logger": "^5.0.5" + } + }, + "@ethersproject/transactions": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.0.8.tgz", + "integrity": "sha512-i7NtOXVzUe+YSU6QufzlRrI2WzHaTmULAKHJv4duIZMLqzehCBXGA9lTpFgFdqGYcQJ7vOtNFC2BB2mSjmuXqg==", + "requires": { + "@ethersproject/address": "^5.0.4", + "@ethersproject/bignumber": "^5.0.7", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/constants": "^5.0.4", + "@ethersproject/keccak256": "^5.0.3", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/properties": "^5.0.3", + "@ethersproject/rlp": "^5.0.3", + "@ethersproject/signing-key": "^5.0.4" + } + }, + "@ethersproject/units": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.0.8.tgz", + "integrity": "sha512-3O4MaNHFs05vC5v2ZGqVFVWtO1WyqFejO78M7Qh16njo282aoMlENtVI6cn2B36zOLFXRvYt2pYx6xCG53qKzg==", + "requires": { + "@ethersproject/bignumber": "^5.0.7", + "@ethersproject/constants": "^5.0.4", + "@ethersproject/logger": "^5.0.5" + } + }, + "@ethersproject/wallet": { + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.0.9.tgz", + "integrity": "sha512-GfpQF56PO/945SJq7Wdg5F5U6wkxaDgkAzcgGbCW6Joz8oW8MzKItkvYCzMh+j/8gJMzFncsuqX4zg2gq3J6nQ==", + "requires": { + "@ethersproject/abstract-provider": "^5.0.4", + "@ethersproject/abstract-signer": "^5.0.4", + "@ethersproject/address": "^5.0.4", + "@ethersproject/bignumber": "^5.0.7", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/hash": "^5.0.4", + "@ethersproject/hdnode": "^5.0.4", + "@ethersproject/json-wallets": "^5.0.6", + "@ethersproject/keccak256": "^5.0.3", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/properties": "^5.0.3", + "@ethersproject/random": "^5.0.3", + "@ethersproject/signing-key": "^5.0.4", + "@ethersproject/transactions": "^5.0.5", + "@ethersproject/wordlists": "^5.0.4" + } + }, + "@ethersproject/web": { + "version": "5.0.11", + "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.0.11.tgz", + "integrity": "sha512-x03ihbPoN1S8Gsh9WSwxkYxUIumLi02ZEKJku1C43sxBfe+mdprWyvujzYlpuoRNfWRgNhdRDKMP8JbG6MwNGA==", + "requires": { + "@ethersproject/base64": "^5.0.3", + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/properties": "^5.0.3", + "@ethersproject/strings": "^5.0.4" + } + }, + "@ethersproject/wordlists": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.0.7.tgz", + "integrity": "sha512-ZjQtYxm41FmHfYgpkdQG++EDcBPQWv9O6FfP6NndYRVaXaQZh6eq3sy7HQP8zCZ8dznKgy6ZyKECS8qdvnGHwA==", + "requires": { + "@ethersproject/bytes": "^5.0.4", + "@ethersproject/hash": "^5.0.4", + "@ethersproject/logger": "^5.0.5", + "@ethersproject/properties": "^5.0.3", + "@ethersproject/strings": "^5.0.4" + } + }, + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz", + "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==", + "dev": true, + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + } + }, + "@jest/core": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz", + "integrity": "sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==", + "dev": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "slash": "^2.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz", + "integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==", + "dev": true, + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + } + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz", + "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + } + }, + "@jest/reporters": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz", + "integrity": "sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==", + "dev": true, + "requires": { + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.2.6", + "jest-haste-map": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.4.2", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + } + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz", + "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==", + "dev": true, + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz", + "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==", + "dev": true, + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + } + }, + "@jest/test-sequencer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz", + "integrity": "sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==", + "dev": true, + "requires": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + } + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + } + }, + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "@types/babel__core": { + "version": "7.1.10", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.10.tgz", + "integrity": "sha512-x8OM8XzITIMyiwl5Vmo2B1cR1S1Ipkyv4mdlbJjMa1lmuKvKY9FrBbEANIaMlnWn5Rf7uO+rC/VgYabNkE17Hw==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", + "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.3.tgz", + "integrity": "sha512-uCoznIPDmnickEi6D0v11SBpW0OuVqHJCa7syXqQHy5uktSCreIlt0iglsCnmvz8yCb38hGcWeseA8cWJSwv5Q==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.15.tgz", + "integrity": "sha512-Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/bn.js": { + "version": "4.11.6", + "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz", + "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==", + "requires": { + "@types/node": "*" + } + }, + "@types/body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==", + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/bson": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/bson/-/bson-4.0.2.tgz", + "integrity": "sha512-+uWmsejEHfmSjyyM/LkrP0orfE2m5Mx9Xel4tXNeqi1ldK5XMQcDsFkBmLDtuyKUbxj2jGDo0H240fbCRJZo7Q==", + "requires": { + "@types/node": "*" + } + }, + "@types/component-emitter": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.10.tgz", + "integrity": "sha512-bsjleuRKWmGqajMerkzox19aGbscQX5rmmvvXl3wlIp5gMG1HgkiwPxsN5p070fBDKTNSPgojVbuY1+HWMbFhg==" + }, + "@types/connect": { + "version": "3.4.33", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.33.tgz", + "integrity": "sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A==", + "requires": { + "@types/node": "*" + } + }, + "@types/connect-mongo": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/connect-mongo/-/connect-mongo-3.1.3.tgz", + "integrity": "sha512-h162kWzfphobvJOttkYKLXEQQmZuOlOSA1IszOusQhguCGf+/B8k4H373SJ0BtVv+qkXP/lziEuUfZDNfzZ1tw==", + "requires": { + "connect-mongo": "*" + } + }, + "@types/cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-y7mImlc/rNkvCRmg8gC3/lj87S7pTUIJ6QGjwHR9WQJcFs+ZMTOaoPrkdFA/YdbuqVEmEbb5RdhVxMkAcgOnpg==" + }, + "@types/cors": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.8.tgz", + "integrity": "sha512-fO3gf3DxU2Trcbr75O7obVndW/X5k8rJNZkLXlQWStTHhP71PkRqjwPIEI0yMnJdg9R9OasjU+Bsr+Hr1xy/0w==", + "requires": { + "@types/express": "*" + } + }, + "@types/express": { + "version": "4.17.8", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.8.tgz", + "integrity": "sha512-wLhcKh3PMlyA2cNAB9sjM1BntnhPMiM0JOBwPBqttjHev2428MLEB4AYVN+d8s2iyCVZac+o41Pflm/ZH5vLXQ==", + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "*", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.13.tgz", + "integrity": "sha512-RgDi5a4nuzam073lRGKTUIaL3eF2+H7LJvJ8eUnCI0wA6SNjXc44DCmWNiTLs/AZ7QlsFWZiw/gTG3nSQGL0fA==", + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "@types/express-session": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/@types/express-session/-/express-session-1.17.0.tgz", + "integrity": "sha512-OQEHeBFE1UhChVIBhRh9qElHUvTp4BzKKHxMDkGHT7WuYk5eL93hPG7D8YAIkoBSbhNEY0RjreF15zn+U0eLjA==", + "requires": { + "@types/express": "*", + "@types/node": "*" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "@types/lodash": { + "version": "4.14.161", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.161.tgz", + "integrity": "sha512-EP6O3Jkr7bXvZZSZYlsgt5DIjiGr0dXP1/jVEwVLTFgg0d+3lWVQkRavYVQszV7dYUwvg0B8R0MBDpcmXg7XIA==", + "dev": true + }, + "@types/mime": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-2.0.3.tgz", + "integrity": "sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q==" + }, + "@types/mongodb": { + "version": "3.5.27", + "resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-3.5.27.tgz", + "integrity": "sha512-1jxKDgdfJEOO9zp+lv43p8jOqRs02xPrdUTzAZIVK9tVEySfCEmktL2jEu9A3wOBEOs18yKzpVIKUh8b8ALk3w==", + "requires": { + "@types/bson": "*", + "@types/node": "*" + } + }, + "@types/node": { + "version": "14.11.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.11.10.tgz", + "integrity": "sha512-yV1nWZPlMFpoXyoknm4S56y2nlTAuFYaJuQtYRAOU7xA/FJ9RY0Xm7QOkaYMMmr8ESdHIuUb6oQgR/0+2NqlyA==" + }, + "@types/pbkdf2": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.0.tgz", + "integrity": "sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==", + "requires": { + "@types/node": "*" + } + }, + "@types/qs": { + "version": "6.9.5", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.5.tgz", + "integrity": "sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ==" + }, + "@types/range-parser": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz", + "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==" + }, + "@types/secp256k1": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.1.tgz", + "integrity": "sha512-+ZjSA8ELlOp8SlKi0YLB2tz9d5iPNEmOBd+8Rz21wTMdaXQIa9b6TEnD6l5qKOCypE7FSyPyck12qZJxSDNoog==", + "requires": { + "@types/node": "*" + } + }, + "@types/serve-static": { + "version": "1.13.5", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.5.tgz", + "integrity": "sha512-6M64P58N+OXjU432WoLLBQxbA0LRGBCRm7aAGQJ+SMC1IMl0dgRVi9EFfoDcS2a7Xogygk/eGN94CfwU9UF7UQ==", + "requires": { + "@types/express-serve-static-core": "*", + "@types/mime": "*" + } + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "dev": true + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.11.tgz", + "integrity": "sha512-NRqD6T4gktUrDi1o1wLH3EKC1o2caCr7/wR87ODcbVITQF106OM3sFN92ysZ++wqelOd1CTzatnOBRDYYG6wGQ==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz", + "integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==", + "dev": true + }, + "@uphold/request-logger": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@uphold/request-logger/-/request-logger-2.0.0.tgz", + "integrity": "sha1-xYXAvblCEBmJRcZZfk/iPW5j4IQ=", + "requires": { + "uuid": "^3.0.1" + }, + "dependencies": { + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + } + }, + "abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "dev": true + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "accept-language": { + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/accept-language/-/accept-language-3.0.18.tgz", + "integrity": "sha1-9QJfF79lpGaoRYOMz5jNuHfYM4Q=", + "requires": { + "bcp47": "^1.1.2", + "stable": "^0.1.6" + } + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", + "dev": true + }, + "acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", + "dev": true, + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + } + } + }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", + "dev": true + }, + "acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "dev": true + }, + "aes-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", + "integrity": "sha1-4h3xCtbCBTKVvLuNq0Cwnb6ofk0=" + }, + "ajv": { + "version": "6.12.5", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.5.tgz", + "integrity": "sha512-lRF8RORchjpKG50/WFf8xmg7sgCLFiYNNnqdKflk63whMQcWR5ngGjiSXkL9bjxy6B2npOK2HSMN49jEBMSkag==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "amqp": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/amqp/-/amqp-0.2.7.tgz", + "integrity": "sha1-c4z8Rf2cmSYLRdX6/DLtAAhB4bE=", + "requires": { + "lodash": "^4.0.0" + } + }, + "ansi-align": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz", + "integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==", + "dev": true, + "requires": { + "string-width": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "ansi-colors": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", + "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", + "dev": true + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "append-field": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", + "integrity": "sha1-HjRA6RXwsSA9I3SOeO3XubW0PlY=" + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "are-we-there-yet": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", + "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=", + "dev": true + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "array-includes": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.1.tgz", + "integrity": "sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.0", + "is-string": "^1.0.5" + } + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true + }, + "async": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", + "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==" + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "async-retry": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.1.tgz", + "integrity": "sha512-aiieFW/7h3hY0Bq5d+ktDBejxuwR78vRu9hDUdR8rNhSaQ29VzPL4AoIRG7D/c7tdenwOcKvgPM6tIxB3cB6HA==", + "requires": { + "retry": "0.12.0" + } + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.1.tgz", + "integrity": "sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA==" + }, + "axios": { + "version": "0.20.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.20.0.tgz", + "integrity": "sha512-ANA4rr2BDcmmAQLOKft2fufrtuvlqR+cXNNinUmvfeSNCOF98PZL+7M/v1zIdGo7OLjEA9J2gXJL+j4zGsl0bA==", + "requires": { + "follow-redirects": "^1.10.0" + } + }, + "babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz", + "integrity": "sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==", + "dev": true, + "requires": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + } + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + } + }, + "babel-plugin-jest-hoist": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz", + "integrity": "sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==", + "dev": true, + "requires": { + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz", + "integrity": "sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==", + "dev": true, + "requires": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + } + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "base-x": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz", + "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "base64-js": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", + "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==" + }, + "base64id": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", + "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" + }, + "basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": { + "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==" + } + } + }, + "bcp47": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/bcp47/-/bcp47-1.1.2.tgz", + "integrity": "sha1-NUvjMH/9CEM6ePXh4glYRfifx/4=" + }, + "bcrypt": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-3.0.8.tgz", + "integrity": "sha512-jKV6RvLhI36TQnPDvUFqBEnGX9c8dRRygKxCZu7E+MgLfKZbmmXL8a7/SFFOyHoPNX9nV81cKRC5tbQfvEQtpw==", + "requires": { + "nan": "2.14.0", + "node-pre-gyp": "0.14.0" + } + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bech32": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz", + "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==" + }, + "bignumber.js": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-4.1.0.tgz", + "integrity": "sha512-eJzYkFYy9L4JzXsbymsFn3p54D+llV27oTQ+ziJG7WFRheJcNZilgVXMG0LoZtlQSKBsJdWtLFqOD0u+U0jZKA==" + }, + "binary-extensions": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz", + "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bitcoin-core": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bitcoin-core/-/bitcoin-core-3.0.0.tgz", + "integrity": "sha512-fdh8V/5lxDXwbq6KUCd9PjbTDe1kPGFM1brSFByuzMb+VSArr1qF422qbAJvW0dLQSaRhVDb7WC+a602QM70FQ==", + "requires": { + "@uphold/request-logger": "^2.0.0", + "debugnyan": "^1.0.0", + "json-bigint": "^0.2.0", + "lodash": "^4.0.0", + "request": "^2.53.0", + "semver": "^5.1.0", + "standard-error": "^1.1.0" + } + }, + "bl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/bl/-/bl-2.2.1.tgz", + "integrity": "sha512-6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g==", + "requires": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "blakejs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.1.0.tgz", + "integrity": "sha1-ad+S75U6qIylGjLfarHFShVfx6U=" + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "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" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "bowser": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.9.0.tgz", + "integrity": "sha512-2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA==" + }, + "boxen": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", + "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", + "dev": true, + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^5.3.1", + "chalk": "^3.0.0", + "cli-boxes": "^2.2.0", + "string-width": "^4.1.0", + "term-size": "^2.1.0", + "type-fest": "^0.8.1", + "widest-line": "^3.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.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": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "dev": true, + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", + "dev": true + } + } + }, + "browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + }, + "dependencies": { + "bn.js": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", + "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==" + } + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "bn.js": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", + "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "bs58": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", + "integrity": "sha1-vhYedsNU9veIrkBx9j806MTwpCo=", + "requires": { + "base-x": "^3.0.2" + } + }, + "bs58check": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz", + "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==", + "requires": { + "bs58": "^4.0.0", + "create-hash": "^1.1.0", + "safe-buffer": "^5.1.2" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "requires": { + "node-int64": "^0.4.0" + } + }, + "bson": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/bson/-/bson-1.1.5.tgz", + "integrity": "sha512-kDuEzldR21lHciPQAIulLs1LZlCXdLziXI6Mb/TDkwXhb//UORJNPXgcRs2CuO4H0DcMkpfT3/ySsP3unoZjBg==" + }, + "buffer": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", + "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4" + } + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + }, + "buffer-to-arraybuffer": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/buffer-to-arraybuffer/-/buffer-to-arraybuffer-0.0.5.tgz", + "integrity": "sha1-YGSkD6dutDxyOrqe+PbhIW0QURo=" + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + }, + "bufferutil": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.2.tgz", + "integrity": "sha512-AtnG3W6M8B2n4xDQ5R+70EXvOpnXsFYg/AK2yTZd+HQ/oxAdz+GI+DvjmhBw3L0ole+LJ0ngqY4JMbDzkfNzhA==", + "requires": { + "node-gyp-build": "^4.2.0" + } + }, + "bunyan": { + "version": "1.8.14", + "resolved": "https://registry.npmjs.org/bunyan/-/bunyan-1.8.14.tgz", + "integrity": "sha512-LlahJUxXzZLuw/hetUQJmRgZ1LF6+cr5TPpRj6jf327AsiIq2jhYEH4oqUUkVKTor+9w2BT3oxVwhzE5lw9tcg==", + "requires": { + "dtrace-provider": "~0.8", + "moment": "^2.19.3", + "mv": "~2", + "safe-json-stringify": "~1" + } + }, + "busboy": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-0.2.14.tgz", + "integrity": "sha1-bCpiLvz0fFe7vh4qnDetNseSVFM=", + "requires": { + "dicer": "0.2.5", + "readable-stream": "1.1.x" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "camelize": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", + "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "requires": { + "rsvp": "^4.8.4" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "chai": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.2.0.tgz", + "integrity": "sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw==", + "dev": true, + "requires": { + "assertion-error": "^1.1.0", + "check-error": "^1.0.2", + "deep-eql": "^3.0.1", + "get-func-name": "^2.0.0", + "pathval": "^1.1.0", + "type-detect": "^4.0.5" + } + }, + "chai-datetime": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/chai-datetime/-/chai-datetime-1.7.0.tgz", + "integrity": "sha512-4kPT3R1tr0ujZ+xRTOzvGiZOzC30URFT+28/gd/vusOhumSH/o6TVI4yZMsQTwc+UUGpvIdx1wChQQVZkTbq/g==", + "dev": true, + "requires": { + "chai": ">1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=" + }, + "check-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", + "integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=", + "dev": true + }, + "chokidar": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.2.tgz", + "integrity": "sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==", + "dev": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.1.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.4.0" + }, + "dependencies": { + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "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==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "fsevents": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", + "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", + "dev": true, + "optional": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + } + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "cids": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/cids/-/cids-0.7.5.tgz", + "integrity": "sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==", + "requires": { + "buffer": "^5.5.0", + "class-is": "^1.1.0", + "multibase": "~0.6.0", + "multicodec": "^1.0.0", + "multihashes": "~0.4.15" + }, + "dependencies": { + "multicodec": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.4.tgz", + "integrity": "sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==", + "requires": { + "buffer": "^5.6.0", + "varint": "^5.0.0" + } + } + } + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "class-is": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/class-is/-/class-is-1.1.0.tgz", + "integrity": "sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==" + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "cldrjs": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/cldrjs/-/cldrjs-0.5.4.tgz", + "integrity": "sha512-6QkI7oPLUZ9vA5BQAmUOfh5JIpESfnYy/M8d7Ddl9Yx+z2TAnQgnc3kbgjkIgxsk5Y0tOY+n6itMWXzQQQ2IWg==" + }, + "cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/color/-/color-3.0.0.tgz", + "integrity": "sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.2" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "color-string": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz", + "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" + }, + "colorspace": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz", + "integrity": "sha512-vt+OoIP2d76xLhjwbBaucYlNSpPsrJWPlBTtwCpQKIu6/CSMutyzX93O/Do0qzpH3YoHEes8YEFXyZ797rEhzQ==", + "requires": { + "color": "3.0.x", + "text-hex": "1.0.x" + } + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "complex.js": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/complex.js/-/complex.js-2.0.11.tgz", + "integrity": "sha512-6IArJLApNtdg1P1dFtn3dnyzoZBEF0MwMnrfF1exSBRpZYoy4yieMkpZhQDC0uwctw48vii0CFVyHfpgZ/DfGw==" + }, + "component-emitter": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", + "dev": true + }, + "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": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "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" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "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", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + } + } + }, + "connect-mongo": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/connect-mongo/-/connect-mongo-3.2.0.tgz", + "integrity": "sha512-0Mx88079Z20CG909wCFlR3UxhMYGg6Ibn1hkIje1hwsqOLWtL9HJV+XD0DAjUvQScK6WqY/FA8tSVQM9rR64Rw==", + "requires": { + "mongodb": "^3.1.0" + } + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" + }, + "contains-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", + "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=", + "dev": true + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": { + "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==" + } + } + }, + "content-hash": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/content-hash/-/content-hash-2.5.2.tgz", + "integrity": "sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==", + "requires": { + "cids": "^0.7.1", + "multicodec": "^0.5.5", + "multihashes": "^0.4.15" + } + }, + "content-security-policy-builder": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz", + "integrity": "sha512-/MtLWhJVvJNkA9dVLAp6fg9LxD2gfI6R2Fi1hPmfjYXSahJJzcfvoeDOxSyp4NvxMuwWv3WMssE9o31DoULHrQ==" + }, + "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==" + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": { + "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==", + "dev": true + } + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + }, + "cookie-parser": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.5.tgz", + "integrity": "sha512-f13bPUj/gG/5mDr+xLmSxxDsB9DQiTIfhJS/sqjrmfAWiAN+x2O4i/XguTL9yDZ+/IFDanJ+5x7hC4CXT9Tdzw==", + "requires": { + "cookie": "0.4.0", + "cookie-signature": "1.0.6" + } + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "cookiejar": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz", + "integrity": "sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==" + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "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" + } + }, + "crc": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", + "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", + "requires": { + "buffer": "^5.1.0" + } + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=" + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true + }, + "csrf": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/csrf/-/csrf-3.1.0.tgz", + "integrity": "sha512-uTqEnCvWRk042asU6JtapDTcJeeailFy4ydOQS28bj1hcLnYRiqi8SsD2jS412AY1I/4qdOwWZun774iqywf9w==", + "requires": { + "rndm": "1.2.0", + "tsscmp": "1.0.6", + "uid-safe": "2.1.5" + } + }, + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "cssstyle": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz", + "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", + "dev": true, + "requires": { + "cssom": "0.3.x" + } + }, + "csurf": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/csurf/-/csurf-1.11.0.tgz", + "integrity": "sha512-UCtehyEExKTxgiu8UHdGvHj4tnpE/Qctue03Giq5gPgMQ9cg/ciod5blZQ5a4uCEenNQjxyGuzygLdKUmee/bQ==", + "requires": { + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "csrf": "3.1.0", + "http-errors": "~1.7.3" + }, + "dependencies": { + "http-errors": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", + "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + } + } + } + }, + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "dasherize": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dasherize/-/dasherize-2.0.0.tgz", + "integrity": "sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg=" + }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "dev": true, + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": { + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "debug-log": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/debug-log/-/debug-log-1.0.1.tgz", + "integrity": "sha1-IwdjLUwEOCuN+KMvcLiVBG1SdF8=", + "dev": true + }, + "debugnyan": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/debugnyan/-/debugnyan-1.0.0.tgz", + "integrity": "sha1-kDhtXrwsY1iPF/Jyvlwqk7dmXYM=", + "requires": { + "bunyan": "^1.8.1", + "debug": "^2.2.0" + }, + "dependencies": { + "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" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decimal.js": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", + "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==" + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "deep-eql": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz", + "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==", + "dev": true, + "requires": { + "type-detect": "^4.0.0" + } + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "deglob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/deglob/-/deglob-4.0.1.tgz", + "integrity": "sha512-/g+RDZ7yf2HvoW+E5Cy+K94YhgcFgr6C8LuHZD1O5HoNPkf3KY6RfXJ0DBGlB/NkLi5gml+G9zqRzk9S0mHZCg==", + "dev": true, + "requires": { + "find-root": "^1.0.0", + "glob": "^7.0.5", + "ignore": "^5.0.0", + "pkg-config": "^1.1.0", + "run-parallel": "^1.1.2", + "uniq": "^1.0.1" + }, + "dependencies": { + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" + }, + "denque": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/denque/-/denque-1.4.1.tgz", + "integrity": "sha512-OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ==" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=" + }, + "detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=", + "dev": true + }, + "dicer": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/dicer/-/dicer-0.2.5.tgz", + "integrity": "sha1-WZbAhrszIYyBLAkL3cCc0S+stw8=", + "requires": { + "readable-stream": "1.1.x", + "streamsearch": "0.1.2" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "diff": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", + "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", + "dev": true + }, + "diff-sequences": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.9.0.tgz", + "integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==", + "dev": true + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-walk": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", + "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "dev": true, + "requires": { + "webidl-conversions": "^4.0.2" + } + }, + "dont-sniff-mimetype": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz", + "integrity": "sha512-ZjI4zqTaxveH2/tTlzS1wFp+7ncxNZaIEWYg3lzZRHkKf5zPT/MnEG6WL0BhHMJUabkh8GeU5NL5j+rEUCb7Ug==" + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, + "dotenv": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" + }, + "double-ended-queue": { + "version": "2.1.0-0", + "resolved": "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz", + "integrity": "sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw=" + }, + "dtrace-provider": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.8.tgz", + "integrity": "sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==", + "optional": true, + "requires": { + "nan": "^2.14.0" + } + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "elliptic": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz", + "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==", + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "enabled": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", + "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "engine.io": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-4.0.4.tgz", + "integrity": "sha512-4ggUX5pICZU17OTZNFv5+uFE/ZyoK+TIXv2SvxWWX8lwStllQ6Lvvs4lDBqvKpV9EYXNcvlNOcjKChd/mo+8Tw==", + "requires": { + "accepts": "~1.3.4", + "base64id": "2.0.0", + "cookie": "~0.4.1", + "cors": "~2.8.5", + "debug": "~4.1.0", + "engine.io-parser": "~4.0.0", + "ws": "^7.1.2" + }, + "dependencies": { + "cookie": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==" + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "engine.io-parser": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.1.tgz", + "integrity": "sha512-v5aZK1hlckcJDGmHz3W8xvI3NUHYc9t8QtTbqdR5OaH3S9iJZilPubauOm+vLWOMMWzpE3hiq92l9lTAHamRCg==" + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + } + } + }, + "es-abstract": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", + "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + }, + "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==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es5-ext": { + "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "requires": { + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.3", + "next-tick": "~1.0.0" + } + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "requires": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "requires": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "escape-latex": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/escape-latex/-/escape-latex-1.2.0.tgz", + "integrity": "sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw==" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "eslint": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz", + "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "ajv": "^6.10.0", + "chalk": "^2.1.0", + "cross-spawn": "^6.0.5", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^1.4.3", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.2", + "esquery": "^1.0.1", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "inquirer": "^7.0.0", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.14", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.3", + "progress": "^2.0.0", + "regexpp": "^2.0.1", + "semver": "^6.1.2", + "strip-ansi": "^5.2.0", + "strip-json-comments": "^3.0.1", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "eslint-config-standard": { + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-14.1.1.tgz", + "integrity": "sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg==", + "dev": true + }, + "eslint-config-standard-jsx": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-8.1.0.tgz", + "integrity": "sha512-ULVC8qH8qCqbU792ZOO6DaiaZyHNS/5CZt3hKqHkEhVlhPEPN3nfBqqxJCyp59XrjIBZPu1chMYe9T2DXZ7TMw==", + "dev": true + }, + "eslint-import-resolver-node": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", + "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", + "dev": true, + "requires": { + "debug": "^2.6.9", + "resolve": "^1.13.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "eslint-module-utils": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz", + "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==", + "dev": true, + "requires": { + "debug": "^2.6.9", + "pkg-dir": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true + }, + "pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "dev": true, + "requires": { + "find-up": "^2.1.0" + } + } + } + }, + "eslint-plugin-es": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-2.0.0.tgz", + "integrity": "sha512-f6fceVtg27BR02EYnBhgWLFQfK6bN4Ll0nQFrBHOlCsAyxeZkn0NHns5O0YZOPrV1B3ramd6cgFwaoFLcSkwEQ==", + "dev": true, + "requires": { + "eslint-utils": "^1.4.2", + "regexpp": "^3.0.0" + }, + "dependencies": { + "regexpp": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", + "dev": true + } + } + }, + "eslint-plugin-import": { + "version": "2.18.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz", + "integrity": "sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ==", + "dev": true, + "requires": { + "array-includes": "^3.0.3", + "contains-path": "^0.1.0", + "debug": "^2.6.9", + "doctrine": "1.5.0", + "eslint-import-resolver-node": "^0.3.2", + "eslint-module-utils": "^2.4.0", + "has": "^1.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.0", + "read-pkg-up": "^2.0.0", + "resolve": "^1.11.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", + "dev": true, + "requires": { + "esutils": "^2.0.2", + "isarray": "^1.0.0" + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "dev": true, + "requires": { + "pify": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "dev": true, + "requires": { + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" + } + }, + "read-pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "dev": true, + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" + } + } + } + }, + "eslint-plugin-node": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-10.0.0.tgz", + "integrity": "sha512-1CSyM/QCjs6PXaT18+zuAXsjXGIGo5Rw630rSKwokSs2jrYURQc4R5JZpoanNCqwNmepg+0eZ9L7YiRUJb8jiQ==", + "dev": true, + "requires": { + "eslint-plugin-es": "^2.0.0", + "eslint-utils": "^1.4.2", + "ignore": "^5.1.1", + "minimatch": "^3.0.4", + "resolve": "^1.10.1", + "semver": "^6.1.0" + }, + "dependencies": { + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "eslint-plugin-promise": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz", + "integrity": "sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw==", + "dev": true + }, + "eslint-plugin-react": { + "version": "7.14.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.14.3.tgz", + "integrity": "sha512-EzdyyBWC4Uz2hPYBiEJrKCUi2Fn+BJ9B/pJQcjw5X+x/H2Nm59S4MJIvL4O5NEE0+WbnQwEBxWY03oUk+Bc3FA==", + "dev": true, + "requires": { + "array-includes": "^3.0.3", + "doctrine": "^2.1.0", + "has": "^1.0.3", + "jsx-ast-utils": "^2.1.0", + "object.entries": "^1.1.0", + "object.fromentries": "^2.0.0", + "object.values": "^1.1.0", + "prop-types": "^15.7.2", + "resolve": "^1.10.1" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + } + } + }, + "eslint-plugin-standard": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-4.0.1.tgz", + "integrity": "sha512-v/KBnfyaOMPmZc/dmc6ozOdWqekGp7bBGq4jLAecEfPGmfKiWS4sA8sC0LqiV9w5qmXAtXVn4M3p1jSyhY85SQ==", + "dev": true + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", + "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + }, + "espree": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", + "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz", + "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "eth-ens-namehash": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/eth-ens-namehash/-/eth-ens-namehash-2.0.8.tgz", + "integrity": "sha1-IprEbsqG1S4MmR58sq74P/D2i88=", + "requires": { + "idna-uts46-hx": "^2.3.1", + "js-sha3": "^0.5.7" + } + }, + "eth-lib": { + "version": "0.1.29", + "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.1.29.tgz", + "integrity": "sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==", + "requires": { + "bn.js": "^4.11.6", + "elliptic": "^6.4.0", + "nano-json-stream-parser": "^0.1.2", + "servify": "^0.1.12", + "ws": "^3.0.0", + "xhr-request-promise": "^0.1.2" + }, + "dependencies": { + "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==" + }, + "ws": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", + "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", + "requires": { + "async-limiter": "~1.0.0", + "safe-buffer": "~5.1.0", + "ultron": "~1.1.0" + } + } + } + }, + "ethereum-bloom-filters": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/ethereum-bloom-filters/-/ethereum-bloom-filters-1.0.7.tgz", + "integrity": "sha512-cDcJJSJ9GMAcURiAWO3DxIEhTL/uWqlQnvgKpuYQzYPrt/izuGU+1ntQmHt0IRq6ADoSYHFnB+aCEFIldjhkMQ==", + "requires": { + "js-sha3": "^0.8.0" + }, + "dependencies": { + "js-sha3": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", + "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" + } + } + }, + "ethereum-cryptography": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", + "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "requires": { + "@types/pbkdf2": "^3.0.0", + "@types/secp256k1": "^4.0.1", + "blakejs": "^1.1.0", + "browserify-aes": "^1.2.0", + "bs58check": "^2.1.2", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "hash.js": "^1.1.7", + "keccak": "^3.0.0", + "pbkdf2": "^3.0.17", + "randombytes": "^2.1.0", + "safe-buffer": "^5.1.2", + "scrypt-js": "^3.0.0", + "secp256k1": "^4.0.1", + "setimmediate": "^1.0.5" + } + }, + "ethereumjs-common": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/ethereumjs-common/-/ethereumjs-common-1.5.2.tgz", + "integrity": "sha512-hTfZjwGX52GS2jcVO6E2sx4YuFnf0Fhp5ylo4pEPhEffNln7vS59Hr5sLnp3/QCazFLluuBZ+FZ6J5HTp0EqCA==" + }, + "ethereumjs-tx": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ethereumjs-tx/-/ethereumjs-tx-2.1.2.tgz", + "integrity": "sha512-zZEK1onCeiORb0wyCXUvg94Ve5It/K6GD1K+26KfFKodiBiS6d9lfCXlUKGBBdQ+bv7Day+JK0tj1K+BeNFRAw==", + "requires": { + "ethereumjs-common": "^1.5.0", + "ethereumjs-util": "^6.0.0" + } + }, + "ethereumjs-util": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", + "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", + "requires": { + "@types/bn.js": "^4.11.3", + "bn.js": "^4.11.0", + "create-hash": "^1.1.2", + "elliptic": "^6.5.2", + "ethereum-cryptography": "^0.1.3", + "ethjs-util": "0.1.6", + "rlp": "^2.2.3" + } + }, + "ethers": { + "version": "5.0.23", + "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.0.23.tgz", + "integrity": "sha512-f3pTcgYpMhtmMTMG9KO6pWHYjrCiGz7yVnvMsTQgAYfAVAeUxKy2H1cxQJyqyghRjtAvgVYJlnXQo8mMCD63BA==", + "requires": { + "@ethersproject/abi": "5.0.9", + "@ethersproject/abstract-provider": "5.0.7", + "@ethersproject/abstract-signer": "5.0.9", + "@ethersproject/address": "5.0.8", + "@ethersproject/base64": "5.0.6", + "@ethersproject/basex": "5.0.6", + "@ethersproject/bignumber": "5.0.12", + "@ethersproject/bytes": "5.0.8", + "@ethersproject/constants": "5.0.7", + "@ethersproject/contracts": "5.0.8", + "@ethersproject/hash": "5.0.8", + "@ethersproject/hdnode": "5.0.7", + "@ethersproject/json-wallets": "5.0.9", + "@ethersproject/keccak256": "5.0.6", + "@ethersproject/logger": "5.0.8", + "@ethersproject/networks": "5.0.6", + "@ethersproject/pbkdf2": "5.0.6", + "@ethersproject/properties": "5.0.6", + "@ethersproject/providers": "5.0.17", + "@ethersproject/random": "5.0.6", + "@ethersproject/rlp": "5.0.6", + "@ethersproject/sha2": "5.0.6", + "@ethersproject/signing-key": "5.0.7", + "@ethersproject/solidity": "5.0.7", + "@ethersproject/strings": "5.0.7", + "@ethersproject/transactions": "5.0.8", + "@ethersproject/units": "5.0.8", + "@ethersproject/wallet": "5.0.9", + "@ethersproject/web": "5.0.11", + "@ethersproject/wordlists": "5.0.7" + } + }, + "ethjs-unit": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz", + "integrity": "sha1-xmWSHkduh7ziqdWIpv4EBbLEFpk=", + "requires": { + "bn.js": "4.11.6", + "number-to-bn": "1.7.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.6", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", + "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=" + } + } + }, + "ethjs-util": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz", + "integrity": "sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==", + "requires": { + "is-hex-prefixed": "1.0.0", + "strip-hex-prefix": "1.0.0" + } + }, + "eventemitter3": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", + "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==" + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "exec-sh": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz", + "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==", + "dev": true + }, + "execa": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.0.3.tgz", + "integrity": "sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A==", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "dev": true + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "expect": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", + "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + } + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "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" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "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==" + } + } + }, + "express-session": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.17.1.tgz", + "integrity": "sha512-UbHwgqjxQZJiWRTMyhvWGvjBQduGCSBDhhZXYenziMFjxst5rMV+aJZ6hKPHZnPyHGsrqRICxtX8jtEbm/z36Q==", + "requires": { + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-headers": "~1.0.2", + "parseurl": "~1.3.3", + "safe-buffer": "5.2.0", + "uid-safe": "~2.1.5" + }, + "dependencies": { + "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" + } + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "safe-buffer": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", + "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + } + } + }, + "express-socket.io-session": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/express-socket.io-session/-/express-socket.io-session-1.3.5.tgz", + "integrity": "sha512-ila9jN7Pu9OuNIDzkuW+ZChR2Y0TzyyFITT7xiOWCjuGCDUWioD382zqxI7HOaa8kIhfs3wTLOZMU9h6buuOFw==", + "requires": { + "cookie-parser": "~1.3.3", + "crc": "^3.3.0", + "debug": "~2.6.0" + }, + "dependencies": { + "cookie": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.1.3.tgz", + "integrity": "sha1-5zSlwUF/zkctWu+Cw4HKu2TRpDU=" + }, + "cookie-parser": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.3.5.tgz", + "integrity": "sha1-nXVVcPtdF4kHcSJ6AjFNm+fPg1Y=", + "requires": { + "cookie": "0.1.3", + "cookie-signature": "1.0.6" + } + }, + "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" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "express-useragent": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/express-useragent/-/express-useragent-1.0.15.tgz", + "integrity": "sha512-eq5xMiYCYwFPoekffMjvEIk+NWdlQY9Y38OsTyl13IvA728vKT+q/CSERYWzcw93HGBJcIqMIsZC5CZGARPVdg==" + }, + "express-validator": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/express-validator/-/express-validator-6.6.1.tgz", + "integrity": "sha512-+MrZKJ3eGYXkNF9p9Zf7MS7NkPJFg9MDYATU5c80Cf4F62JdLBIjWxy6481tRC0y1NnC9cgOw8FuN364bWaGhA==", + "requires": { + "lodash": "^4.17.19", + "validator": "^13.1.1" + } + }, + "ext": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", + "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", + "requires": { + "type": "^2.0.0" + }, + "dependencies": { + "type": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.1.0.tgz", + "integrity": "sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==" + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "faker": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/faker/-/faker-4.1.0.tgz", + "integrity": "sha1-HkW7vsxndLPBlfrSg1EJxtdIzD8=" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "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==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fast-safe-stringify": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz", + "integrity": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==" + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "dev": true, + "requires": { + "bser": "2.1.1" + } + }, + "feature-policy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/feature-policy/-/feature-policy-0.3.0.tgz", + "integrity": "sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ==" + }, + "fecha": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.0.tgz", + "integrity": "sha512-aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg==" + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-entry-cache": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", + "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "dev": true, + "requires": { + "flat-cache": "^2.0.1" + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "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" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "dev": true + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "flat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz", + "integrity": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==", + "dev": true, + "requires": { + "is-buffer": "~2.0.3" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz", + "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==", + "dev": true + } + } + }, + "flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", + "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "dev": true, + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + }, + "dependencies": { + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "flatted": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "dev": true + }, + "fn.name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", + "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" + }, + "follow-redirects": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz", + "integrity": "sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "formidable": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.2.2.tgz", + "integrity": "sha512-V8gLm+41I/8kguQ4/o1D3RIHRmhYFG4pnNyonvua+40rqcEmT4+V71yaZ3B457xbbgCsCfjSPi65u/W6vK1U5Q==", + "dev": true + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + }, + "fraction.js": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.0.12.tgz", + "integrity": "sha512-8Z1K0VTG4hzYY7kA/1sj4/r1/RWLBD3xwReT/RCrUCbzPszjNQCCsy3ktkU/eaEqX3MYa4pY37a52eiBlPMlhA==" + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "fs-extra": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", + "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fs-minipass": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", + "requires": { + "minipass": "^2.6.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + } + }, + "gensync": { + "version": "1.0.0-beta.1", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz", + "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-func-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=", + "dev": true + }, + "get-stdin": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-7.0.0.tgz", + "integrity": "sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==", + "dev": true + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "global": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz", + "integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=", + "requires": { + "min-document": "^2.19.0", + "process": "~0.5.1" + } + }, + "global-dirs": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz", + "integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==", + "dev": true, + "requires": { + "ini": "^1.3.5" + } + }, + "globalize": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/globalize/-/globalize-1.6.0.tgz", + "integrity": "sha512-MTuAU3Tnbtga8PvxbpSPdQNIs6K5UdATWIuarWJK2Z3e1DghXpxb/GmShSVagzHqCOYgZr7N/Hi7D1mrHG30jQ==", + "requires": { + "cldrjs": "^0.5.4" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "requires": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "dependencies": { + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "requires": { + "pump": "^3.0.0" + } + } + } + }, + "graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==" + }, + "growl": { + "version": "1.10.5", + "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", + "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", + "dev": true + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "dev": true + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "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": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==" + }, + "has-symbols": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", + "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", + "dev": true + }, + "has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "requires": { + "has-symbol-support-x": "^1.4.1" + } + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", + "dev": true + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "helmet": { + "version": "3.23.3", + "resolved": "https://registry.npmjs.org/helmet/-/helmet-3.23.3.tgz", + "integrity": "sha512-U3MeYdzPJQhtvqAVBPntVgAvNSOJyagwZwyKsFdyRa8TV3pOKVFljalPOCxbw5Wwf2kncGhmP0qHjyazIdNdSA==", + "requires": { + "depd": "2.0.0", + "dont-sniff-mimetype": "1.1.0", + "feature-policy": "0.3.0", + "helmet-crossdomain": "0.4.0", + "helmet-csp": "2.10.0", + "hide-powered-by": "1.1.0", + "hpkp": "2.0.0", + "hsts": "2.2.0", + "nocache": "2.1.0", + "referrer-policy": "1.2.0", + "x-xss-protection": "1.3.0" + }, + "dependencies": { + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + } + }, + "helmet-crossdomain": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz", + "integrity": "sha512-AB4DTykRw3HCOxovD1nPR16hllrVImeFp5VBV9/twj66lJ2nU75DP8FPL0/Jp4jj79JhTfG+pFI2MD02kWJ+fA==" + }, + "helmet-csp": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/helmet-csp/-/helmet-csp-2.10.0.tgz", + "integrity": "sha512-Rz953ZNEFk8sT2XvewXkYN0Ho4GEZdjAZy4stjiEQV3eN7GDxg1QKmYggH7otDyIA7uGA6XnUMVSgeJwbR5X+w==", + "requires": { + "bowser": "2.9.0", + "camelize": "1.0.0", + "content-security-policy-builder": "2.1.0", + "dasherize": "2.0.0" + } + }, + "hide-powered-by": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hide-powered-by/-/hide-powered-by-1.1.0.tgz", + "integrity": "sha512-Io1zA2yOA1YJslkr+AJlWSf2yWFkKjvkcL9Ni1XSUqnGLr/qRQe2UI3Cn/J9MsJht7yEVCe0SscY1HgVMujbgg==" + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "hosted-git-info": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", + "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", + "dev": true + }, + "hpkp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hpkp/-/hpkp-2.0.0.tgz", + "integrity": "sha1-EOFCJk52IVpdMMROxD3mTe5tFnI=" + }, + "hsts": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/hsts/-/hsts-2.2.0.tgz", + "integrity": "sha512-ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ==", + "requires": { + "depd": "2.0.0" + }, + "dependencies": { + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + } + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "dev": true, + "requires": { + "whatwg-encoding": "^1.0.1" + } + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + } + }, + "http-https": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz", + "integrity": "sha1-L5CN1fHbQGjAWM1ubUzjkskTOJs=" + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + }, + "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" + } + }, + "idna-uts46-hx": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/idna-uts46-hx/-/idna-uts46-hx-2.3.1.tgz", + "integrity": "sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==", + "requires": { + "punycode": "2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz", + "integrity": "sha1-X4Y+3Im5bbCQdLrXlHvwkFbKTn0=" + } + } + }, + "ieee754": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", + "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==" + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=", + "dev": true + }, + "ignore-walk": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz", + "integrity": "sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==", + "requires": { + "minimatch": "^3.0.4" + } + }, + "import-fresh": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", + "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + } + } + }, + "import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", + "dev": true + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", + "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" + }, + "injectpromise": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/injectpromise/-/injectpromise-1.0.0.tgz", + "integrity": "sha512-qNq5wy4qX4uWHcVFOEU+RqZkoVG65FhvGkyDWbuBxILMjK6A1LFf5A1mgXZkD4nRx5FCorD81X/XvPKp/zVfPA==" + }, + "inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", + "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", + "dev": true, + "requires": { + "type-fest": "^0.11.0" + } + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", + "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", + "dev": true + } + } + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, + "requires": { + "loose-envify": "^1.0.0" + } + }, + "invert-kv": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-3.0.1.tgz", + "integrity": "sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==" + }, + "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-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "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==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-callable": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", + "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==", + "dev": true + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", + "dev": true + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "is-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", + "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-hex-prefixed": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", + "integrity": "sha1-fY035q135dEnFIkTxXPggtd39VQ=" + }, + "is-installed-globally": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz", + "integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==", + "dev": true, + "requires": { + "global-dirs": "^2.0.1", + "is-path-inside": "^3.0.1" + } + }, + "is-negative-zero": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.0.tgz", + "integrity": "sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=", + "dev": true + }, + "is-npm": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz", + "integrity": "sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==", + "dev": true + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, + "is-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz", + "integrity": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=" + }, + "is-path-inside": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz", + "integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==", + "dev": true + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-regex": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", + "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.1" + } + }, + "is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" + }, + "is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + }, + "is-string": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", + "dev": true + }, + "is-symbol": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.1" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "dev": true, + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "istanbul-lib-report": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", + "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + }, + "dependencies": { + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", + "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + }, + "dependencies": { + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + } + } + }, + "istanbul-reports": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.7.tgz", + "integrity": "sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0" + } + }, + "isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "requires": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + } + }, + "javascript-natural-sort": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz", + "integrity": "sha1-+eIwPUUH9tdDVac2ZNFED7Wg71k=" + }, + "jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz", + "integrity": "sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==", + "dev": true, + "requires": { + "import-local": "^2.0.0", + "jest-cli": "^24.9.0" + }, + "dependencies": { + "jest-cli": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz", + "integrity": "sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==", + "dev": true, + "requires": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + } + } + } + }, + "jest-changed-files": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.9.0.tgz", + "integrity": "sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.9.0.tgz", + "integrity": "sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + } + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.9.0.tgz", + "integrity": "sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==", + "dev": true, + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + } + }, + "jest-docblock": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.9.0.tgz", + "integrity": "sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==", + "dev": true, + "requires": { + "detect-newline": "^2.1.0" + } + }, + "jest-each": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.9.0.tgz", + "integrity": "sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + } + }, + "jest-environment-jsdom": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz", + "integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==", + "dev": true, + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + } + }, + "jest-environment-node": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.9.0.tgz", + "integrity": "sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==", + "dev": true, + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + } + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz", + "integrity": "sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==", + "dev": true + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "fsevents": "^1.2.7", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz", + "integrity": "sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==", + "dev": true, + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + } + }, + "jest-leak-detector": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz", + "integrity": "sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==", + "dev": true, + "requires": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + } + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz", + "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", + "dev": true, + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + } + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + } + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz", + "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0" + } + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "dev": true + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz", + "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==", + "dev": true + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.9.0.tgz", + "integrity": "sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + } + }, + "jest-resolve-dependencies": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz", + "integrity": "sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.9.0" + } + }, + "jest-runner": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.9.0.tgz", + "integrity": "sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==", + "dev": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + } + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz", + "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", + "dev": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + } + }, + "jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "dev": true + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz", + "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "dev": true, + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + } + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz", + "integrity": "sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + } + }, + "jest-watcher": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.9.0.tgz", + "integrity": "sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==", + "dev": true, + "requires": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + } + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "dev": true, + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": { + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "js-sha3": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", + "integrity": "sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc=" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "jsdom": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz", + "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", + "dev": true, + "requires": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "ws": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", + "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + } + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-bigint": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-0.2.3.tgz", + "integrity": "sha1-EY1/b/HThlnxn5TPc+ZKdaP5iKg=", + "requires": { + "bignumber.js": "^4.0.0" + } + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "jsx-ast-utils": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz", + "integrity": "sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==", + "dev": true, + "requires": { + "array-includes": "^3.1.1", + "object.assign": "^4.1.0" + } + }, + "kareem": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.3.1.tgz", + "integrity": "sha512-l3hLhffs9zqoDe8zjmb/mAN4B8VT3L56EUvKNqLFVs9YlFA+zx7ke1DO8STAdDyYNkeSo1nKmjuvQeI12So8Xw==" + }, + "keccak": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.1.tgz", + "integrity": "sha512-epq90L9jlFWCW7+pQa6JOnKn2Xgl2mtI664seYR6MHskvI9agt7AnDqmAlp9TqU4/caMYbA08Hi5DMZAl5zdkA==", + "requires": { + "node-addon-api": "^2.0.0", + "node-gyp-build": "^4.2.0" + } + }, + "keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "requires": { + "json-buffer": "3.0.0" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, + "kuler": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", + "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" + }, + "latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "dev": true, + "requires": { + "package-json": "^6.3.0" + } + }, + "lcid": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-3.1.1.tgz", + "integrity": "sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==", + "requires": { + "invert-kv": "^3.0.0" + } + }, + "left-pad": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==", + "dev": true + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "dev": true + }, + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "dev": true, + "requires": { + "chalk": "^2.0.1" + } + }, + "logform": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/logform/-/logform-2.2.0.tgz", + "integrity": "sha512-N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg==", + "requires": { + "colors": "^1.2.1", + "fast-safe-stringify": "^2.0.4", + "fecha": "^4.2.0", + "ms": "^2.1.1", + "triple-beam": "^1.3.0" + } + }, + "loopback-connector": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/loopback-connector/-/loopback-connector-5.0.0.tgz", + "integrity": "sha512-LdMGKc+XJDkf6agtRsc2W0O6jWEAjyjwr7cD+8FIypzynQg89Ks8pQCheL4Sfns5MBqd+33HRXlH6YG/rr4zyQ==", + "requires": { + "async": "^3.2.0", + "bluebird": "^3.7.2", + "debug": "^4.1.1", + "msgpack5": "^4.2.0", + "strong-globalize": "^6.0.4", + "uuid": "^8.3.0" + }, + "dependencies": { + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "requires": { + "ms": "2.1.2" + } + } + } + }, + "loopback-connector-mongodb": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/loopback-connector-mongodb/-/loopback-connector-mongodb-5.4.0.tgz", + "integrity": "sha512-8wwT6H9KZAgSH5d0U/FzEyiJc7mxhOWSNxtUjj3xrIFQtz3+H/yrs0SQHqodwc8dcQDTZOpQAlA7HhpRWuXU/g==", + "requires": { + "async": "^3.1.0", + "bson": "^1.0.6", + "debug": "^4.1.0", + "loopback-connector": "^5.0.0", + "mongodb": "^3.2.4", + "strong-globalize": "^6.0.0" + }, + "dependencies": { + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "requires": { + "ms": "2.1.2" + } + } + } + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + } + } + }, + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "dev": true, + "requires": { + "tmpl": "1.0.x" + } + }, + "map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "requires": { + "p-defer": "^1.0.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "mathjs": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/mathjs/-/mathjs-8.0.1.tgz", + "integrity": "sha512-lvdYNHLNrRORYKRpRs22RMeeAoqVxRePUCjDealCZLfN5io0tJHqQLyNZuJJSXWa8Pl0dkM434D4cIUsbYR1Mg==", + "requires": { + "complex.js": "^2.0.11", + "decimal.js": "^10.2.1", + "escape-latex": "^1.2.0", + "fraction.js": "^4.0.12", + "javascript-natural-sort": "^0.7.1", + "seedrandom": "^3.0.5", + "tiny-emitter": "^2.1.0", + "typed-function": "^2.0.0" + } + }, + "md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "requires": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "mem": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/mem/-/mem-5.1.1.tgz", + "integrity": "sha512-qvwipnozMohxLXG1pOqoLiZKNkC4r4qqRucSoDwXowsNGDSULiqFTRUF05vcZWnwJSG22qTsynQhxbaMtnX9gw==", + "requires": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^2.1.0", + "p-is-promise": "^2.1.0" + } + }, + "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": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + } + }, + "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.44.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", + "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==" + }, + "mime-types": { + "version": "2.1.27", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", + "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "requires": { + "mime-db": "1.44.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + }, + "min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", + "requires": { + "dom-walk": "^0.1.0" + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "minipass": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", + "requires": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + }, + "minizlib": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", + "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", + "requires": { + "minipass": "^2.9.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "requires": { + "minimist": "^1.2.5" + } + }, + "mkdirp-promise": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz", + "integrity": "sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE=", + "requires": { + "mkdirp": "*" + } + }, + "mocha": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-6.2.3.tgz", + "integrity": "sha512-0R/3FvjIGH3eEuG17ccFPk117XL2rWxatr81a57D+r/x2uTYZRbdZ4oVidEUMh2W2TJDa7MdAb12Lm2/qrKajg==", + "dev": true, + "requires": { + "ansi-colors": "3.2.3", + "browser-stdout": "1.3.1", + "debug": "3.2.6", + "diff": "3.5.0", + "escape-string-regexp": "1.0.5", + "find-up": "3.0.0", + "glob": "7.1.3", + "growl": "1.10.5", + "he": "1.2.0", + "js-yaml": "3.13.1", + "log-symbols": "2.2.0", + "minimatch": "3.0.4", + "mkdirp": "0.5.4", + "ms": "2.1.1", + "node-environment-flags": "1.0.5", + "object.assign": "4.1.0", + "strip-json-comments": "2.0.1", + "supports-color": "6.0.0", + "which": "1.3.1", + "wide-align": "1.1.3", + "yargs": "13.3.2", + "yargs-parser": "13.1.2", + "yargs-unparser": "1.6.0" + }, + "dependencies": { + "glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "mkdirp": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz", + "integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + }, + "object.assign": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", + "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "function-bind": "^1.1.1", + "has-symbols": "^1.0.0", + "object-keys": "^1.0.11" + } + }, + "supports-color": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", + "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "mock-fs": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/mock-fs/-/mock-fs-4.13.0.tgz", + "integrity": "sha512-DD0vOdofJdoaRNtnWcrXe6RQbpHkPPmtqGq14uRX0F8ZKJ5nv89CVTYl/BZdppDxBDaV0hl75htg3abpEWlPZA==" + }, + "moment": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", + "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==" + }, + "moment-timezone": { + "version": "0.5.31", + "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.31.tgz", + "integrity": "sha512-+GgHNg8xRhMXfEbv81iDtrVeTcWt0kWmTEY1XQK14dICTXnWJnT0dxdlPspwqF3keKMVPXwayEsk1DI0AA/jdA==", + "requires": { + "moment": ">= 2.9.0" + } + }, + "mongodb": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-3.6.2.tgz", + "integrity": "sha512-sSZOb04w3HcnrrXC82NEh/YGCmBuRgR+C1hZgmmv4L6dBz4BkRse6Y8/q/neXer9i95fKUBbFi4KgeceXmbsOA==", + "requires": { + "bl": "^2.2.1", + "bson": "^1.1.4", + "denque": "^1.4.1", + "require_optional": "^1.0.1", + "safe-buffer": "^5.1.2", + "saslprep": "^1.0.0" + } + }, + "mongoose": { + "version": "5.10.9", + "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-5.10.9.tgz", + "integrity": "sha512-7dkr1d6Uyk87hELzoc6B7Zo7kkPTx8rKummk51Y0je2V2Ttsw0KFPwTp1G8JIbBta7Wpw8j15PJi0d33Ode2nw==", + "requires": { + "bson": "^1.1.4", + "kareem": "2.3.1", + "mongodb": "3.6.2", + "mongoose-legacy-pluralize": "1.0.2", + "mpath": "0.7.0", + "mquery": "3.2.2", + "ms": "2.1.2", + "regexp-clone": "1.0.0", + "safe-buffer": "5.2.1", + "sift": "7.0.1", + "sliced": "1.0.1" + } + }, + "mongoose-legacy-pluralize": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/mongoose-legacy-pluralize/-/mongoose-legacy-pluralize-1.0.2.tgz", + "integrity": "sha512-Yo/7qQU4/EyIS8YDFSeenIvXxZN+ld7YdV9LqFVQJzTLye8unujAWPZ4NWKfFA+RNjh+wvTWKY9Z3E5XM6ZZiQ==" + }, + "morgan": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", + "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", + "requires": { + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" + }, + "dependencies": { + "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" + } + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "mpath": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.7.0.tgz", + "integrity": "sha512-Aiq04hILxhz1L+f7sjGyn7IxYzWm1zLNNXcfhDtx04kZ2Gk7uvFdgZ8ts1cWa/6d0TQmag2yR8zSGZUmp0tFNg==" + }, + "mquery": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/mquery/-/mquery-3.2.2.tgz", + "integrity": "sha512-XB52992COp0KP230I3qloVUbkLUxJIu328HBP2t2EsxSFtf4W1HPSOBWOXf1bqxK4Xbb66lfMJ+Bpfd9/yZE1Q==", + "requires": { + "bluebird": "3.5.1", + "debug": "3.1.0", + "regexp-clone": "^1.0.0", + "safe-buffer": "5.1.2", + "sliced": "1.0.1" + }, + "dependencies": { + "bluebird": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz", + "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==" + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "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==" + } + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "msgpack5": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/msgpack5/-/msgpack5-4.2.1.tgz", + "integrity": "sha512-Xo7nE9ZfBVonQi1rSopNAqPdts/QHyuSEUwIEzAkB+V2FtmkkLUbP6MyVqVVQxsZYI65FpvW3Bb8Z9ZWEjbgHQ==", + "requires": { + "bl": "^2.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.3.6", + "safe-buffer": "^5.1.2" + } + }, + "multer": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.2.tgz", + "integrity": "sha512-xY8pX7V+ybyUpbYMxtjM9KAiD9ixtg5/JkeKUTD6xilfDv0vzzOFcCp4Ljb1UU3tSOM3VTZtKo63OmzOrGi3Cg==", + "requires": { + "append-field": "^1.0.0", + "busboy": "^0.2.11", + "concat-stream": "^1.5.2", + "mkdirp": "^0.5.1", + "object-assign": "^4.1.1", + "on-finished": "^2.3.0", + "type-is": "^1.6.4", + "xtend": "^4.0.0" + } + }, + "multibase": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.6.1.tgz", + "integrity": "sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==", + "requires": { + "base-x": "^3.0.8", + "buffer": "^5.5.0" + } + }, + "multicodec": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-0.5.7.tgz", + "integrity": "sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==", + "requires": { + "varint": "^5.0.0" + } + }, + "multihashes": { + "version": "0.4.21", + "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-0.4.21.tgz", + "integrity": "sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==", + "requires": { + "buffer": "^5.5.0", + "multibase": "^0.7.0", + "varint": "^5.0.0" + }, + "dependencies": { + "multibase": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz", + "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==", + "requires": { + "base-x": "^3.0.8", + "buffer": "^5.5.0" + } + } + } + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "mv": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", + "integrity": "sha1-rmzg1vbV4KT32JN5jQPB6pVZtqI=", + "optional": true, + "requires": { + "mkdirp": "~0.5.1", + "ncp": "~2.0.0", + "rimraf": "~2.4.0" + }, + "dependencies": { + "glob": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", + "integrity": "sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=", + "optional": true, + "requires": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "rimraf": { + "version": "2.4.5", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", + "integrity": "sha1-7nEM5dk6j9uFb7Xqj/Di11k0sto=", + "optional": true, + "requires": { + "glob": "^6.0.1" + } + } + } + }, + "nan": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", + "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==" + }, + "nano-json-stream-parser": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz", + "integrity": "sha1-DMj20OK2IrR5xA1JnEbWS3Vcb18=" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "ncp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", + "integrity": "sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=", + "optional": true + }, + "needle": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.5.2.tgz", + "integrity": "sha512-LbRIwS9BfkPvNwNHlsA41Q29kL2L/6VaOJ0qisM5lLWsTV3nP15abO5ITL6L81zqFhzjRKDAYjpcBcwM0AVvLQ==", + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + } + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "nocache": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz", + "integrity": "sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==" + }, + "node-addon-api": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", + "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==" + }, + "node-cron": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/node-cron/-/node-cron-2.0.3.tgz", + "integrity": "sha512-eJI+QitXlwcgiZwNNSRbqsjeZMp5shyajMR81RZCqeW0ZDEj4zU9tpd4nTh/1JsBiKbF8d08FCewiipDmVIYjg==", + "requires": { + "opencollective-postinstall": "^2.0.0", + "tz-offset": "0.0.1" + } + }, + "node-environment-flags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", + "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", + "dev": true, + "requires": { + "object.getownpropertydescriptors": "^2.0.3", + "semver": "^5.7.0" + } + }, + "node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" + }, + "node-gyp-build": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.2.3.tgz", + "integrity": "sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg==" + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "dev": true + }, + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "dev": true + }, + "node-notifier": { + "version": "5.4.3", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.3.tgz", + "integrity": "sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q==", + "dev": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "node-pre-gyp": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz", + "integrity": "sha512-+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA==", + "requires": { + "detect-libc": "^1.0.2", + "mkdirp": "^0.5.1", + "needle": "^2.2.1", + "nopt": "^4.0.1", + "npm-packlist": "^1.1.6", + "npmlog": "^4.0.2", + "rc": "^1.2.7", + "rimraf": "^2.6.1", + "semver": "^5.3.0", + "tar": "^4.4.2" + } + }, + "nodemailer": { + "version": "6.4.11", + "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.4.11.tgz", + "integrity": "sha512-BVZBDi+aJV4O38rxsUh164Dk1NCqgh6Cm0rQSb9SK/DHGll/DrCMnycVDD7msJgZCnmVa8ASo8EZzR7jsgTukQ==" + }, + "nodemon": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.4.tgz", + "integrity": "sha512-Ltced+hIfTmaS28Zjv1BM552oQ3dbwPqI4+zI0SLgq+wpJhSyqgYude/aZa/3i31VCQWMfXJVxvu86abcam3uQ==", + "dev": true, + "requires": { + "chokidar": "^3.2.2", + "debug": "^3.2.6", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.0.4", + "pstree.remy": "^1.1.7", + "semver": "^5.7.1", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.2", + "update-notifier": "^4.0.0" + } + }, + "nopt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", + "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "normalize-url": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", + "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==" + }, + "notepack.io": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/notepack.io/-/notepack.io-2.2.0.tgz", + "integrity": "sha512-9b5w3t5VSH6ZPosoYnyDONnUTF8o0UkBw7JLA6eBlYJWyGT1Q3vQa8Hmuj1/X6RYvHjjygBDgw6fJhe0JEojfw==" + }, + "npm-bundled": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.1.tgz", + "integrity": "sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==", + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" + }, + "npm-packlist": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz", + "integrity": "sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==", + "requires": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "requires": { + "path-key": "^3.0.0" + } + }, + "npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + }, + "number-to-bn": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz", + "integrity": "sha1-uzYjWS9+X54AMLGXe9QaDFP+HqA=", + "requires": { + "bn.js": "4.11.6", + "strip-hex-prefix": "1.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.6", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", + "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=" + } + } + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", + "dev": true + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz", + "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==", + "dev": true + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.1.tgz", + "integrity": "sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.0", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": { + "es-abstract": { + "version": "1.18.0-next.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz", + "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-negative-zero": "^2.0.0", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + } + } + }, + "object.entries": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.2.tgz", + "integrity": "sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5", + "has": "^1.0.3" + } + }, + "object.fromentries": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.2.tgz", + "integrity": "sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.0-next.1", + "function-bind": "^1.1.1", + "has": "^1.0.3" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz", + "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.0-next.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz", + "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.0-next.1", + "function-bind": "^1.1.1", + "has": "^1.0.3" + } + }, + "oboe": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/oboe/-/oboe-2.1.5.tgz", + "integrity": "sha1-VVQoTFQ6ImbXo48X4HOCH73jk80=", + "requires": { + "http-https": "^1.0.0" + } + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "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==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "one-time": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", + "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", + "requires": { + "fn.name": "1.x.x" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "opencollective-postinstall": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz", + "integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==" + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" + }, + "os-locale": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-5.0.0.tgz", + "integrity": "sha512-tqZcNEDAIZKBEPnHPlVDvKrp7NzgLi7jRmhKiUoa2NUmhl13FtkAGLUVR+ZsYvApBQdBfYm43A4tXXQ4IrYLBA==", + "requires": { + "execa": "^4.0.0", + "lcid": "^3.0.0", + "mem": "^5.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + }, + "osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" + }, + "p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=" + }, + "p-each-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", + "integrity": "sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=", + "dev": true, + "requires": { + "p-reduce": "^1.0.0" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + }, + "p-is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==" + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "dev": true + }, + "p-timeout": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", + "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=", + "requires": { + "p-finally": "^1.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "dev": true, + "requires": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-headers": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.3.tgz", + "integrity": "sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA==" + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "dev": true + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pathval": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz", + "integrity": "sha1-uULm1L3mUwBe9rcTYd74cn0GReA=", + "dev": true + }, + "pbkdf2": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", + "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "dev": true, + "requires": { + "node-modules-regexp": "^1.0.0" + } + }, + "pkg-conf": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", + "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", + "dev": true, + "requires": { + "find-up": "^3.0.0", + "load-json-file": "^5.2.0" + }, + "dependencies": { + "load-json-file": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", + "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.15", + "parse-json": "^4.0.0", + "pify": "^4.0.1", + "strip-bom": "^3.0.0", + "type-fest": "^0.3.0" + } + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "dev": true + } + } + }, + "pkg-config": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pkg-config/-/pkg-config-1.1.1.tgz", + "integrity": "sha1-VX7yLXPaPIg3EHdmxS6tq94pj+Q=", + "dev": true, + "requires": { + "debug-log": "^1.0.0", + "find-root": "^1.0.0", + "xtend": "^4.0.1" + } + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==", + "dev": true + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + } + } + }, + "process": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/process/-/process-0.5.2.tgz", + "integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "prompts": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.3.2.tgz", + "integrity": "sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA==", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.4" + } + }, + "prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "dev": true, + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "proxy-addr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", + "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "requires": { + "forwarded": "~0.1.2", + "ipaddr.js": "1.9.1" + } + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "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==", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "pupa": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.0.1.tgz", + "integrity": "sha512-hEJH0s8PXLY/cdXh66tNEQGndDrIKNqNC5xmrysZy3i5C3oEoLna7YAOad+7u125+zH1HNXUmGEkrhb3c2VriA==", + "dev": true, + "requires": { + "escape-goat": "^2.0.0" + } + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + }, + "query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "requires": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "random-bytes": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", + "integrity": "sha1-T2ih3Arli9P7lYSMMDJNt11kNgs=" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "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==" + }, + "rate-limiter-flexible": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/rate-limiter-flexible/-/rate-limiter-flexible-1.3.2.tgz", + "integrity": "sha512-f+xNvGn+52G4nZVok9VB3LTE1kfDmqbnWKRayX5n2k/LEQ7doWrYvzmzFVh7ltmLgwEdEzoYwxGaXlfCjFg4Ag==" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dev": true, + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + } + }, + "read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "dev": true, + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "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==" + } + } + }, + "readdirp": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz", + "integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", + "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", + "dev": true, + "requires": { + "util.promisify": "^1.0.0" + } + }, + "redis": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/redis/-/redis-2.8.0.tgz", + "integrity": "sha512-M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A==", + "requires": { + "double-ended-queue": "^2.1.0-0", + "redis-commands": "^1.2.0", + "redis-parser": "^2.6.0" + } + }, + "redis-commands": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/redis-commands/-/redis-commands-1.6.0.tgz", + "integrity": "sha512-2jnZ0IkjZxvguITjFTrGiLyzQZcTvaw8DAaCXxZq/dsHXz7KfMQ3OUJy7Tz9vnRtZRVz6VRCPDvruvU8Ts44wQ==" + }, + "redis-errors": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz", + "integrity": "sha1-62LSrbFeTq9GEMBK/hUpOEJQq60=" + }, + "redis-parser": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz", + "integrity": "sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs=" + }, + "referrer-policy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/referrer-policy/-/referrer-policy-1.2.0.tgz", + "integrity": "sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA==" + }, + "reflect-metadata": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", + "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" + }, + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regexp-clone": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/regexp-clone/-/regexp-clone-1.0.0.tgz", + "integrity": "sha512-TuAasHQNamyyJ2hb97IuBEif4qBHGjPHBS64sZwytpLEqtBQ1gPJTnOaQ6qmpET16cK14kkjbazl6+p0RRv0yw==" + }, + "regexpp": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", + "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", + "dev": true + }, + "registry-auth-token": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.0.tgz", + "integrity": "sha512-P+lWzPrsgfN+UEpDS3U8AQKg/UjZX6mQSJueZj3EK+vNESoqBSpBUD3gmu4sF9lOsjXWjF11dQKUqemf3veq1w==", + "dev": true, + "requires": { + "rc": "^1.2.8" + } + }, + "registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "dev": true, + "requires": { + "rc": "^1.2.8" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + } + }, + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "dev": true, + "requires": { + "lodash": "^4.17.19" + } + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "dev": true, + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "require_optional": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require_optional/-/require_optional-1.0.1.tgz", + "integrity": "sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g==", + "requires": { + "resolve-from": "^2.0.0", + "semver": "^5.1.0" + } + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } + } + }, + "resolve-from": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz", + "integrity": "sha1-lICrIOlP+h2egKgEx+oUdhGWa1c=" + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rlp": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.6.tgz", + "integrity": "sha512-HAfAmL6SDYNWPUOJNrM500x4Thn4PZsEy5pijPh40U9WfNk0z15hUYzO9xVIMAdIHdFtD8CBDHd75Td1g36Mjg==", + "requires": { + "bn.js": "^4.11.1" + } + }, + "rndm": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz", + "integrity": "sha1-8z/pz7Urv9UgqhgyO8ZdsRCht2w=" + }, + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "dev": true + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true + }, + "run-parallel": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz", + "integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==", + "dev": true + }, + "rxjs": { + "version": "6.6.3", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz", + "integrity": "sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "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==" + }, + "safe-json-stringify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz", + "integrity": "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==", + "optional": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "dev": true, + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "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" + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "scrypt-js": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", + "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==" + }, + "secp256k1": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.2.tgz", + "integrity": "sha512-UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg==", + "requires": { + "elliptic": "^6.5.2", + "node-addon-api": "^2.0.0", + "node-gyp-build": "^4.2.0" + } + }, + "seedrandom": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/seedrandom/-/seedrandom-3.0.5.tgz", + "integrity": "sha512-8OwmbklUNzwezjGInmZ+2clQmExQPvomqjL7LFqOYqtmuxRgQYqOD3mHaU+MvZn5FLUeVxVfQjwLZW/n/JFuqg==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "dev": true, + "requires": { + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "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" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "servify": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/servify/-/servify-0.1.12.tgz", + "integrity": "sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==", + "requires": { + "body-parser": "^1.16.0", + "cors": "^2.8.1", + "express": "^4.14.0", + "request": "^2.79.0", + "xhr": "^2.3.3" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "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" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true + }, + "sift": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/sift/-/sift-7.0.1.tgz", + "integrity": "sha512-oqD7PMJ+uO6jV9EQCl0LrRw1OwsiPsiFQR5AR30heR+4Dl7jBBbDLnNvWiak20tzZlSE1H7RB30SX/1j/YYT7g==" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + }, + "simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" + }, + "simple-get": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-2.8.1.tgz", + "integrity": "sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw==", + "requires": { + "decompress-response": "^3.3.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "requires": { + "is-arrayish": "^0.3.1" + } + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + } + } + }, + "sliced": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz", + "integrity": "sha1-CzpmK10Ewxd7GSa+qCsD+Dei70E=" + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "socket.io": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-3.0.3.tgz", + "integrity": "sha512-TC1GnSXhDVmd3bHji5aG7AgWB8UL7E6quACbKra8uFXBqlMwEDbrJFK+tjuIY5Pe9N0L+MAPPDv3pycnn0000A==", + "requires": { + "@types/cookie": "^0.4.0", + "@types/cors": "^2.8.8", + "@types/node": "^14.14.7", + "accepts": "~1.3.4", + "base64id": "~2.0.0", + "debug": "~4.1.0", + "engine.io": "~4.0.0", + "socket.io-adapter": "~2.0.3", + "socket.io-parser": "~4.0.1" + }, + "dependencies": { + "@types/node": { + "version": "14.14.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz", + "integrity": "sha512-J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ==" + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "socket.io-adapter": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.0.3.tgz", + "integrity": "sha512-2wo4EXgxOGSFueqvHAdnmi5JLZzWqMArjuP4nqC26AtLh5PoCPsaRbRdah2xhcwTAMooZfjYiNVNkkmmSMaxOQ==" + } + } + }, + "socket.io-adapter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz", + "integrity": "sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g==" + }, + "socket.io-parser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.2.tgz", + "integrity": "sha512-Bs3IYHDivwf+bAAuW/8xwJgIiBNtlvnjYRc4PbXgniLmcP1BrakBoq/QhO24rgtgW7VZ7uAaswRGxutUnlAK7g==", + "requires": { + "@types/component-emitter": "^1.2.10", + "component-emitter": "~1.3.0", + "debug": "~4.1.0" + }, + "dependencies": { + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "socket.io-redis": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/socket.io-redis/-/socket.io-redis-5.4.0.tgz", + "integrity": "sha512-yCQm/Sywd3d08WXUfZRxt6O+JV2vWoPgWK6GVjiM0GkBtq5cpLOk8oILRPKbzTv1VEtSYmK41q0xzcgDinMbmQ==", + "requires": { + "debug": "~4.1.0", + "notepack.io": "~2.2.0", + "redis": "^3.0.0", + "socket.io-adapter": "~1.1.0", + "uid2": "0.0.3" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "redis": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/redis/-/redis-3.0.2.tgz", + "integrity": "sha512-PNhLCrjU6vKVuMOyFu7oSP296mwBkcE6lrAjruBYG5LgdSqtRBoVQIylrMyVZD/lkF24RSNNatzvYag6HRBHjQ==", + "requires": { + "denque": "^1.4.1", + "redis-commands": "^1.5.0", + "redis-errors": "^1.2.0", + "redis-parser": "^3.0.0" + } + }, + "redis-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz", + "integrity": "sha1-tm2CjNyv5rS4pCin3vTGvKwxyLQ=", + "requires": { + "redis-errors": "^1.0.0" + } + } + } + }, + "socket.io-session-middleware": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/socket.io-session-middleware/-/socket.io-session-middleware-0.1.0.tgz", + "integrity": "sha1-VcM6+EGRwgbjI6lg4wuy81eiC3w=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "dev": true + }, + "sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha1-/0rm5oZWBWuks+eSqzM004JzyhE=", + "optional": true, + "requires": { + "memory-pager": "^1.0.2" + } + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz", + "integrity": "sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw==", + "dev": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" + }, + "stack-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz", + "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==", + "dev": true + }, + "standard": { + "version": "14.3.4", + "resolved": "https://registry.npmjs.org/standard/-/standard-14.3.4.tgz", + "integrity": "sha512-+lpOkFssMkljJ6eaILmqxHQ2n4csuEABmcubLTb9almFi1ElDzXb1819fjf/5ygSyePCq4kU2wMdb2fBfb9P9Q==", + "dev": true, + "requires": { + "eslint": "~6.8.0", + "eslint-config-standard": "14.1.1", + "eslint-config-standard-jsx": "8.1.0", + "eslint-plugin-import": "~2.18.0", + "eslint-plugin-node": "~10.0.0", + "eslint-plugin-promise": "~4.2.1", + "eslint-plugin-react": "~7.14.2", + "eslint-plugin-standard": "~4.0.0", + "standard-engine": "^12.0.0" + } + }, + "standard-engine": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-12.1.0.tgz", + "integrity": "sha512-DVJnWM1CGkag4ucFLGdiYWa5/kJURPONmMmk17p8FT5NE4UnPZB1vxWnXnRo2sPSL78pWJG8xEM+1Tu19z0deg==", + "dev": true, + "requires": { + "deglob": "^4.0.1", + "get-stdin": "^7.0.0", + "minimist": "^1.2.5", + "pkg-conf": "^3.1.0" + } + }, + "standard-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/standard-error/-/standard-error-1.1.0.tgz", + "integrity": "sha1-I+UWj6HAggGJ5YEnAaeQWFENDTQ=" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "dev": true + }, + "streamsearch": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz", + "integrity": "sha1-gIudDlb8Jz2Am6VzOOkpkZoanxo=" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + }, + "string-length": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", + "integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", + "dev": true, + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "string.prototype.trimend": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz", + "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "string.prototype.trimstart": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz", + "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": { + "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==" + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + }, + "strip-hex-prefix": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", + "integrity": "sha1-DF8VX+8RUTczd96du1iNoFUA428=", + "requires": { + "is-hex-prefixed": "1.0.0" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + }, + "strong-globalize": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/strong-globalize/-/strong-globalize-6.0.5.tgz", + "integrity": "sha512-7nfUli41TieV9/TSc0N62ve5Q4nfrpy/T0nNNy6TyD3vst79QWmeylCyd3q1gDxh8dqGEtabLNCdPQP1Iuvecw==", + "requires": { + "accept-language": "^3.0.18", + "debug": "^4.2.0", + "globalize": "^1.6.0", + "lodash": "^4.17.20", + "md5": "^2.3.0", + "mkdirp": "^1.0.4", + "os-locale": "^5.0.0", + "yamljs": "^0.3.0" + }, + "dependencies": { + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "requires": { + "ms": "2.1.2" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "superagent": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz", + "integrity": "sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==", + "dev": true, + "requires": { + "component-emitter": "^1.2.0", + "cookiejar": "^2.1.0", + "debug": "^3.1.0", + "extend": "^3.0.0", + "form-data": "^2.3.1", + "formidable": "^1.2.0", + "methods": "^1.1.1", + "mime": "^1.4.1", + "qs": "^6.5.1", + "readable-stream": "^2.3.5" + } + }, + "supertest": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/supertest/-/supertest-4.0.2.tgz", + "integrity": "sha512-1BAbvrOZsGA3YTCWqbmh14L0YEq0EGICX/nBnfkfVJn7SrxQV1I3pMYjSzG9y/7ZU2V9dWqyqk2POwxlb09duQ==", + "dev": true, + "requires": { + "methods": "^1.1.2", + "superagent": "^3.8.3" + } + }, + "supertest-session": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/supertest-session/-/supertest-session-4.1.0.tgz", + "integrity": "sha512-zJmc2+WBpT772Pk6InGg90n0l1E+8rr5ue8PAyxefIEJWqbrn0RC02brrw7EC1wecoY+UH/AaQxMeo3sPrnPPA==", + "dev": true, + "requires": { + "cookiejar": "^2.1.2", + "methods": "^1.1.2", + "object-assign": "^4.0.1" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "swarm-js": { + "version": "0.1.40", + "resolved": "https://registry.npmjs.org/swarm-js/-/swarm-js-0.1.40.tgz", + "integrity": "sha512-yqiOCEoA4/IShXkY3WKwP5PvZhmoOOD8clsKA7EEcRILMkTEYHCQ21HDCAcVpmIxZq4LyZvWeRJ6quIyHk1caA==", + "requires": { + "bluebird": "^3.5.0", + "buffer": "^5.0.5", + "eth-lib": "^0.1.26", + "fs-extra": "^4.0.2", + "got": "^7.1.0", + "mime-types": "^2.1.16", + "mkdirp-promise": "^5.0.1", + "mock-fs": "^4.1.0", + "setimmediate": "^1.0.5", + "tar": "^4.0.2", + "xhr-request": "^1.0.1" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" + }, + "got": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", + "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "requires": { + "decompress-response": "^3.2.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-plain-obj": "^1.1.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "p-cancelable": "^0.3.0", + "p-timeout": "^1.1.1", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "url-parse-lax": "^1.0.0", + "url-to-options": "^1.0.1" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + }, + "p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==" + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + }, + "url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", + "requires": { + "prepend-http": "^1.0.1" + } + } + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "table": { + "version": "5.4.6", + "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", + "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", + "dev": true, + "requires": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "tar": { + "version": "4.4.13", + "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz", + "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==", + "requires": { + "chownr": "^1.1.1", + "fs-minipass": "^1.2.5", + "minipass": "^2.8.6", + "minizlib": "^1.2.1", + "mkdirp": "^0.5.0", + "safe-buffer": "^5.1.2", + "yallist": "^3.0.3" + } + }, + "term-size": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.0.tgz", + "integrity": "sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw==", + "dev": true + }, + "test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", + "dev": true, + "requires": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + } + }, + "text-hex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", + "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" + }, + "tiny-emitter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", + "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "tmpl": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "touch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", + "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", + "dev": true, + "requires": { + "nopt": "~1.0.10" + }, + "dependencies": { + "nopt": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", + "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", + "dev": true, + "requires": { + "abbrev": "1" + } + } + } + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "triple-beam": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", + "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" + }, + "tronweb": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tronweb/-/tronweb-3.1.0.tgz", + "integrity": "sha512-ih4kLCfJEVSSzPnHxZqKPCI5SybJCzIzG7zmvdrI2jPK5COOB99/HCE2nEwa6QNpad4azfmuAMfo/4m18/MDoA==", + "requires": { + "@babel/runtime": "^7.0.0", + "axios": "^0.19.0", + "babel-runtime": "^6.26.0", + "bignumber.js": "^7.2.1", + "elliptic": "^6.5.3", + "ethers": "^5.0.8", + "eventemitter3": "^3.1.0", + "injectpromise": "^1.0.0", + "lodash": "^4.17.14", + "semver": "^5.6.0", + "validator": "^10.7.1" + }, + "dependencies": { + "axios": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz", + "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==", + "requires": { + "follow-redirects": "1.5.10" + } + }, + "bignumber.js": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-7.2.1.tgz", + "integrity": "sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ==" + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "eventemitter3": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" + }, + "follow-redirects": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", + "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", + "requires": { + "debug": "=3.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "validator": { + "version": "10.11.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-10.11.0.tgz", + "integrity": "sha512-X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw==" + } + } + }, + "tsc": { + "version": "1.20150623.0", + "resolved": "https://registry.npmjs.org/tsc/-/tsc-1.20150623.0.tgz", + "integrity": "sha1-Trw8d04WkUjLx2inNCUz8ILHpuU=" + }, + "tslib": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz", + "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==", + "dev": true + }, + "tsscmp": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", + "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + }, + "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" + } + }, + "typed-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/typed-function/-/typed-function-2.0.0.tgz", + "integrity": "sha512-Hhy1Iwo/e4AtLZNK10ewVVcP2UEs408DS35ubP825w/YgSBK1KVLwALvvIG4yX75QJrxjCpcWkzkVRB0BwwYlA==" + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typegoose": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/typegoose/-/typegoose-5.9.1.tgz", + "integrity": "sha512-D+vMhNyZeKBZHrmJFZwOodl3T9W2NOXY+hbnW/f1n60oEL8+L15eryFc9C6fAKrlnkgpui+kdQnNXsLwx2MgCw==", + "requires": { + "reflect-metadata": "^0.1.13" + } + }, + "typescript": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.0.5.tgz", + "integrity": "sha512-ywmr/VrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ==", + "dev": true + }, + "tz-offset": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/tz-offset/-/tz-offset-0.0.1.tgz", + "integrity": "sha512-kMBmblijHJXyOpKzgDhKx9INYU4u4E1RPMB0HqmKSgWG8vEcf3exEfLh4FFfzd3xdQOw9EuIy/cP0akY6rHopQ==" + }, + "uid-safe": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz", + "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==", + "requires": { + "random-bytes": "~1.0.0" + } + }, + "uid2": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz", + "integrity": "sha1-SDEm4Rd03y9xuLY53NeZw3YWK4I=" + }, + "ultron": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz", + "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==" + }, + "undefsafe": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.3.tgz", + "integrity": "sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A==", + "dev": true, + "requires": { + "debug": "^2.2.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "underscore": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz", + "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==" + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "dev": true + }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "requires": { + "crypto-random-string": "^2.0.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "update-notifier": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.3.tgz", + "integrity": "sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A==", + "dev": true, + "requires": { + "boxen": "^4.2.0", + "chalk": "^3.0.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.3.1", + "is-npm": "^4.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.0.0", + "pupa": "^2.0.1", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "uri-js": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", + "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "requires": { + "prepend-http": "^2.0.0" + } + }, + "url-set-query": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-set-query/-/url-set-query-1.0.0.tgz", + "integrity": "sha1-AW6M/Xwg7gXK/neV6JK9BwL6ozk=" + }, + "url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=" + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "utf-8-validate": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.3.tgz", + "integrity": "sha512-jtJM6fpGv8C1SoH4PtG22pGto6x+Y8uPprW0tw3//gGFhDDTiuksgradgFN6yRayDP4SyZZa6ZMGHLIa17+M8A==", + "requires": { + "node-gyp-build": "^4.2.0" + } + }, + "utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", + "integrity": "sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.0.tgz", + "integrity": "sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ==" + }, + "uuid4": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/uuid4/-/uuid4-1.1.4.tgz", + "integrity": "sha512-Gr1q2k40LpF8CokcnQFjPDsdslzJbTCTBG5xQIEflUov431gFkY5KduiGIeKYAamkQnNn4IfdHJbLnl9Bib8TQ==" + }, + "v8-compile-cache": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz", + "integrity": "sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "validator": { + "version": "13.1.17", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.1.17.tgz", + "integrity": "sha512-zL5QBoemJ3jYFb2/j38y7ljhwYGXVLUp8H6W1nVxadnAOvUOytec+L7BHh1oBQ82/TzWXHd+GSaxUWp4lROkLg==" + }, + "varint": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/varint/-/varint-5.0.2.tgz", + "integrity": "sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dev": true, + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "dev": true, + "requires": { + "makeerror": "1.0.x" + } + }, + "web3": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3/-/web3-1.3.0.tgz", + "integrity": "sha512-4q9dna0RecnrlgD/bD1C5S+81Untbd6Z/TBD7rb+D5Bvvc0Wxjr4OP70x+LlnwuRDjDtzBwJbNUblh2grlVArw==", + "requires": { + "web3-bzz": "1.3.0", + "web3-core": "1.3.0", + "web3-eth": "1.3.0", + "web3-eth-personal": "1.3.0", + "web3-net": "1.3.0", + "web3-shh": "1.3.0", + "web3-utils": "1.3.0" + } + }, + "web3-bzz": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-bzz/-/web3-bzz-1.3.0.tgz", + "integrity": "sha512-ibYAnKab+sgTo/UdfbrvYfWblXjjgSMgyy9/FHa6WXS14n/HVB+HfWqGz2EM3fok8Wy5XoKGMvdqvERQ/mzq1w==", + "requires": { + "@types/node": "^12.12.6", + "got": "9.6.0", + "swarm-js": "^0.1.40", + "underscore": "1.9.1" + }, + "dependencies": { + "@types/node": { + "version": "12.19.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.19.7.tgz", + "integrity": "sha512-zvjOU1g4CpPilbTDUATnZCUb/6lARMRAqzT7ILwl1P3YvU2leEcZ2+fw9+Jrw/paXB1CgQyXTrN4hWDtqT9O2A==" + } + } + }, + "web3-core": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-core/-/web3-core-1.3.0.tgz", + "integrity": "sha512-BwWvAaKJf4KFG9QsKRi3MNoNgzjI6szyUlgme1qNPxUdCkaS3Rdpa0VKYNHP7M/YTk82/59kNE66mH5vmoaXjA==", + "requires": { + "@types/bn.js": "^4.11.5", + "@types/node": "^12.12.6", + "bignumber.js": "^9.0.0", + "web3-core-helpers": "1.3.0", + "web3-core-method": "1.3.0", + "web3-core-requestmanager": "1.3.0", + "web3-utils": "1.3.0" + }, + "dependencies": { + "@types/node": { + "version": "12.19.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.19.7.tgz", + "integrity": "sha512-zvjOU1g4CpPilbTDUATnZCUb/6lARMRAqzT7ILwl1P3YvU2leEcZ2+fw9+Jrw/paXB1CgQyXTrN4hWDtqT9O2A==" + }, + "bignumber.js": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.1.tgz", + "integrity": "sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA==" + } + } + }, + "web3-core-helpers": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-core-helpers/-/web3-core-helpers-1.3.0.tgz", + "integrity": "sha512-+MFb1kZCrRctf7UYE7NCG4rGhSXaQJ/KF07di9GVK1pxy1K0+rFi61ZobuV1ky9uQp+uhhSPts4Zp55kRDB5sw==", + "requires": { + "underscore": "1.9.1", + "web3-eth-iban": "1.3.0", + "web3-utils": "1.3.0" + } + }, + "web3-core-method": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-core-method/-/web3-core-method-1.3.0.tgz", + "integrity": "sha512-h0yFDrYVzy5WkLxC/C3q+hiMnzxdWm9p1T1rslnuHgOp6nYfqzu/6mUIXrsS4h/OWiGJt+BZ0xVZmtC31HDWtg==", + "requires": { + "@ethersproject/transactions": "^5.0.0-beta.135", + "underscore": "1.9.1", + "web3-core-helpers": "1.3.0", + "web3-core-promievent": "1.3.0", + "web3-core-subscriptions": "1.3.0", + "web3-utils": "1.3.0" + } + }, + "web3-core-promievent": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-core-promievent/-/web3-core-promievent-1.3.0.tgz", + "integrity": "sha512-blv69wrXw447TP3iPvYJpllkhW6B18nfuEbrfcr3n2Y0v1Jx8VJacNZFDFsFIcgXcgUIVCtOpimU7w9v4+rtaw==", + "requires": { + "eventemitter3": "4.0.4" + } + }, + "web3-core-requestmanager": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-core-requestmanager/-/web3-core-requestmanager-1.3.0.tgz", + "integrity": "sha512-3yMbuGcomtzlmvTVqNRydxsx7oPlw3ioRL6ReF9PeNYDkUsZaUib+6Dp5eBt7UXh5X+SIn/xa1smhDHz5/HpAw==", + "requires": { + "underscore": "1.9.1", + "web3-core-helpers": "1.3.0", + "web3-providers-http": "1.3.0", + "web3-providers-ipc": "1.3.0", + "web3-providers-ws": "1.3.0" + } + }, + "web3-core-subscriptions": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-core-subscriptions/-/web3-core-subscriptions-1.3.0.tgz", + "integrity": "sha512-MUUQUAhJDb+Nz3S97ExVWveH4utoUnsbPWP+q1HJH437hEGb4vunIb9KvN3hFHLB+aHJfPeStM/4yYTz5PeuyQ==", + "requires": { + "eventemitter3": "4.0.4", + "underscore": "1.9.1", + "web3-core-helpers": "1.3.0" + } + }, + "web3-eth": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-eth/-/web3-eth-1.3.0.tgz", + "integrity": "sha512-/bzJcxXPM9EM18JM5kO2JjZ3nEqVo3HxqU93aWAEgJNqaP/Lltmufl2GpvIB2Hvj+FXAjAXquxUdQ2/xP7BzHQ==", + "requires": { + "underscore": "1.9.1", + "web3-core": "1.3.0", + "web3-core-helpers": "1.3.0", + "web3-core-method": "1.3.0", + "web3-core-subscriptions": "1.3.0", + "web3-eth-abi": "1.3.0", + "web3-eth-accounts": "1.3.0", + "web3-eth-contract": "1.3.0", + "web3-eth-ens": "1.3.0", + "web3-eth-iban": "1.3.0", + "web3-eth-personal": "1.3.0", + "web3-net": "1.3.0", + "web3-utils": "1.3.0" + } + }, + "web3-eth-abi": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-1.3.0.tgz", + "integrity": "sha512-1OrZ9+KGrBeBRd3lO8upkpNua9+7cBsQAgor9wbA25UrcUYSyL8teV66JNRu9gFxaTbkpdrGqM7J/LXpraXWrg==", + "requires": { + "@ethersproject/abi": "5.0.0-beta.153", + "underscore": "1.9.1", + "web3-utils": "1.3.0" + }, + "dependencies": { + "@ethersproject/abi": { + "version": "5.0.0-beta.153", + "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.0.0-beta.153.tgz", + "integrity": "sha512-aXweZ1Z7vMNzJdLpR1CZUAIgnwjrZeUSvN9syCwlBaEBUFJmFY+HHnfuTI5vIhVs/mRkfJVrbEyl51JZQqyjAg==", + "requires": { + "@ethersproject/address": ">=5.0.0-beta.128", + "@ethersproject/bignumber": ">=5.0.0-beta.130", + "@ethersproject/bytes": ">=5.0.0-beta.129", + "@ethersproject/constants": ">=5.0.0-beta.128", + "@ethersproject/hash": ">=5.0.0-beta.128", + "@ethersproject/keccak256": ">=5.0.0-beta.127", + "@ethersproject/logger": ">=5.0.0-beta.129", + "@ethersproject/properties": ">=5.0.0-beta.131", + "@ethersproject/strings": ">=5.0.0-beta.130" + } + } + } + }, + "web3-eth-accounts": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-1.3.0.tgz", + "integrity": "sha512-/Q7EVW4L2wWUbNRtOTwAIrYvJid/5UnKMw67x/JpvRMwYC+e+744P536Ja6SG4X3MnzFvd3E/jruV4qa6k+zIw==", + "requires": { + "crypto-browserify": "3.12.0", + "eth-lib": "0.2.8", + "ethereumjs-common": "^1.3.2", + "ethereumjs-tx": "^2.1.1", + "scrypt-js": "^3.0.1", + "underscore": "1.9.1", + "uuid": "3.3.2", + "web3-core": "1.3.0", + "web3-core-helpers": "1.3.0", + "web3-core-method": "1.3.0", + "web3-utils": "1.3.0" + }, + "dependencies": { + "eth-lib": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", + "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", + "requires": { + "bn.js": "^4.11.6", + "elliptic": "^6.4.0", + "xhr-request-promise": "^0.1.2" + } + }, + "ethereumjs-tx": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ethereumjs-tx/-/ethereumjs-tx-2.1.2.tgz", + "integrity": "sha512-zZEK1onCeiORb0wyCXUvg94Ve5It/K6GD1K+26KfFKodiBiS6d9lfCXlUKGBBdQ+bv7Day+JK0tj1K+BeNFRAw==", + "requires": { + "ethereumjs-common": "^1.5.0", + "ethereumjs-util": "^6.0.0" + } + }, + "ethereumjs-util": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", + "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", + "requires": { + "@types/bn.js": "^4.11.3", + "bn.js": "^4.11.0", + "create-hash": "^1.1.2", + "elliptic": "^6.5.2", + "ethereum-cryptography": "^0.1.3", + "ethjs-util": "0.1.6", + "rlp": "^2.2.3" + } + }, + "uuid": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", + "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" + } + } + }, + "web3-eth-contract": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-1.3.0.tgz", + "integrity": "sha512-3SCge4SRNCnzLxf0R+sXk6vyTOl05g80Z5+9/B5pERwtPpPWaQGw8w01vqYqsYBKC7zH+dxhMaUgVzU2Dgf7bQ==", + "requires": { + "@types/bn.js": "^4.11.5", + "underscore": "1.9.1", + "web3-core": "1.3.0", + "web3-core-helpers": "1.3.0", + "web3-core-method": "1.3.0", + "web3-core-promievent": "1.3.0", + "web3-core-subscriptions": "1.3.0", + "web3-eth-abi": "1.3.0", + "web3-utils": "1.3.0" + } + }, + "web3-eth-ens": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-1.3.0.tgz", + "integrity": "sha512-WnOru+EcuM5dteiVYJcHXo/I7Wq+ei8RrlS2nir49M0QpYvUPGbCGgTbifcjJQTWamgORtWdljSA1s2Asdb74w==", + "requires": { + "content-hash": "^2.5.2", + "eth-ens-namehash": "2.0.8", + "underscore": "1.9.1", + "web3-core": "1.3.0", + "web3-core-helpers": "1.3.0", + "web3-core-promievent": "1.3.0", + "web3-eth-abi": "1.3.0", + "web3-eth-contract": "1.3.0", + "web3-utils": "1.3.0" + } + }, + "web3-eth-iban": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-1.3.0.tgz", + "integrity": "sha512-v9mZWhR4fPF17/KhHLiWir4YHWLe09O3B/NTdhWqw3fdAMJNztzMHGzgHxA/4fU+rhrs/FhDzc4yt32zMEXBZw==", + "requires": { + "bn.js": "^4.11.9", + "web3-utils": "1.3.0" + } + }, + "web3-eth-personal": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-1.3.0.tgz", + "integrity": "sha512-2czUhElsJdLpuNfun9GeLiClo5O6Xw+bLSjl3f4bNG5X2V4wcIjX2ygep/nfstLLtkz8jSkgl/bV7esANJyeRA==", + "requires": { + "@types/node": "^12.12.6", + "web3-core": "1.3.0", + "web3-core-helpers": "1.3.0", + "web3-core-method": "1.3.0", + "web3-net": "1.3.0", + "web3-utils": "1.3.0" + }, + "dependencies": { + "@types/node": { + "version": "12.19.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.19.7.tgz", + "integrity": "sha512-zvjOU1g4CpPilbTDUATnZCUb/6lARMRAqzT7ILwl1P3YvU2leEcZ2+fw9+Jrw/paXB1CgQyXTrN4hWDtqT9O2A==" + } + } + }, + "web3-net": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-net/-/web3-net-1.3.0.tgz", + "integrity": "sha512-Xz02KylOyrB2YZzCkysEDrY7RbKxb7LADzx3Zlovfvuby7HBwtXVexXKtoGqksa+ns1lvjQLLQGb+OeLi7Sr7w==", + "requires": { + "web3-core": "1.3.0", + "web3-core-method": "1.3.0", + "web3-utils": "1.3.0" + } + }, + "web3-providers-http": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-1.3.0.tgz", + "integrity": "sha512-cMKhUI6PqlY/EC+ZDacAxajySBu8AzW8jOjt1Pe/mbRQgS0rcZyvLePGTTuoyaA8C21F8UW+EE5jj7YsNgOuqA==", + "requires": { + "web3-core-helpers": "1.3.0", + "xhr2-cookies": "1.1.0" + } + }, + "web3-providers-ipc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-1.3.0.tgz", + "integrity": "sha512-0CrLuRofR+1J38nEj4WsId/oolwQEM6Yl1sOt41S/6bNI7htdkwgVhSloFIMJMDFHtRw229QIJ6wIaKQz0X1Og==", + "requires": { + "oboe": "2.1.5", + "underscore": "1.9.1", + "web3-core-helpers": "1.3.0" + } + }, + "web3-providers-ws": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-1.3.0.tgz", + "integrity": "sha512-Im5MthhJnJst8nSoq0TgbyOdaiFQFa5r6sHPOVllhgIgViDqzbnlAFW9sNzQ0Q8VXPNfPIQKi9cOrHlSRNPjRw==", + "requires": { + "eventemitter3": "4.0.4", + "underscore": "1.9.1", + "web3-core-helpers": "1.3.0", + "websocket": "^1.0.32" + } + }, + "web3-shh": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-shh/-/web3-shh-1.3.0.tgz", + "integrity": "sha512-IZTojA4VCwVq+7eEIHuL1tJXtU+LJDhO8Y2QmuwetEWW1iBgWCGPHZasipWP+7kDpSm/5lo5GRxL72FF/Os/tA==", + "requires": { + "web3-core": "1.3.0", + "web3-core-method": "1.3.0", + "web3-core-subscriptions": "1.3.0", + "web3-net": "1.3.0" + } + }, + "web3-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-1.3.0.tgz", + "integrity": "sha512-2mS5axFCbkhicmoDRuJeuo0TVGQDgC2sPi/5dblfVC+PMtX0efrb8Xlttv/eGkq7X4E83Pds34FH98TP2WOUZA==", + "requires": { + "bn.js": "^4.11.9", + "eth-lib": "0.2.8", + "ethereum-bloom-filters": "^1.0.6", + "ethjs-unit": "0.1.6", + "number-to-bn": "1.7.0", + "randombytes": "^2.1.0", + "underscore": "1.9.1", + "utf8": "3.0.0" + }, + "dependencies": { + "eth-lib": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", + "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", + "requires": { + "bn.js": "^4.11.6", + "elliptic": "^6.4.0", + "xhr-request-promise": "^0.1.2" + } + } + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "websocket": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/websocket/-/websocket-1.0.32.tgz", + "integrity": "sha512-i4yhcllSP4wrpoPMU2N0TQ/q0O94LRG/eUQjEAamRltjQ1oT1PFFKOG4i877OlJgCG8rw6LrrowJp+TYCEWF7Q==", + "requires": { + "bufferutil": "^4.0.1", + "debug": "^2.2.0", + "es5-ext": "^0.10.50", + "typedarray-to-buffer": "^3.1.5", + "utf-8-validate": "^5.0.2", + "yaeti": "^0.0.6" + }, + "dependencies": { + "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" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "wide-align": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "requires": { + "string-width": "^1.0.2 || 2" + } + }, + "widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dev": true, + "requires": { + "string-width": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + } + } + }, + "winston": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/winston/-/winston-3.3.3.tgz", + "integrity": "sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==", + "requires": { + "@dabh/diagnostics": "^2.0.2", + "async": "^3.1.0", + "is-stream": "^2.0.0", + "logform": "^2.2.0", + "one-time": "^1.0.0", + "readable-stream": "^3.4.0", + "stack-trace": "0.0.x", + "triple-beam": "^1.3.0", + "winston-transport": "^4.4.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "winston-transport": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.0.tgz", + "integrity": "sha512-Lc7/p3GtqtqPBYYtS6KCN3c77/2QCev51DvcJKbkFPQNoj1sinkGwLGFDxkXY9J6p9+EPnYs+D90uwbnaiURTw==", + "requires": { + "readable-stream": "^2.3.7", + "triple-beam": "^1.2.0" + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "write": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", + "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", + "dev": true, + "requires": { + "mkdirp": "^0.5.1" + } + }, + "write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "ws": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.0.tgz", + "integrity": "sha512-kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ==" + }, + "x-xss-protection": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/x-xss-protection/-/x-xss-protection-1.3.0.tgz", + "integrity": "sha512-kpyBI9TlVipZO4diReZMAHWtS0MMa/7Kgx8hwG/EuZLiA6sg4Ah/4TRdASHhRRN3boobzcYgFRUFSgHRge6Qhg==" + }, + "xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true + }, + "xhr": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.5.0.tgz", + "integrity": "sha512-4nlO/14t3BNUZRXIXfXe+3N6w3s1KoxcJUUURctd64BLRe67E4gRwp4PjywtDY72fXpZ1y6Ch0VZQRY/gMPzzQ==", + "requires": { + "global": "~4.3.0", + "is-function": "^1.0.1", + "parse-headers": "^2.0.0", + "xtend": "^4.0.0" + } + }, + "xhr-request": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/xhr-request/-/xhr-request-1.1.0.tgz", + "integrity": "sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==", + "requires": { + "buffer-to-arraybuffer": "^0.0.5", + "object-assign": "^4.1.1", + "query-string": "^5.0.1", + "simple-get": "^2.7.0", + "timed-out": "^4.0.1", + "url-set-query": "^1.0.0", + "xhr": "^2.0.4" + } + }, + "xhr-request-promise": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz", + "integrity": "sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==", + "requires": { + "xhr-request": "^1.1.0" + } + }, + "xhr2-cookies": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/xhr2-cookies/-/xhr2-cookies-1.1.0.tgz", + "integrity": "sha1-fXdEnQmZGX8VXLc7I99yUF7YnUg=", + "requires": { + "cookiejar": "^2.1.1" + } + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true + }, + "yaeti": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz", + "integrity": "sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc=" + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "yamljs": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/yamljs/-/yamljs-0.3.0.tgz", + "integrity": "sha512-C/FsVVhht4iPQYXOInoxUM/1ELSf9EsgKH34FofQOp6hwCPrW4vG4w5++TED3xRUo8gD7l0P1J1dLlDYzODsTQ==", + "requires": { + "argparse": "^1.0.7", + "glob": "^7.0.5" + } + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "yargs-unparser": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz", + "integrity": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==", + "dev": true, + "requires": { + "flat": "^4.1.0", + "lodash": "^4.17.15", + "yargs": "^13.3.0" + } + } + } +} diff --git a/server/package.json b/server/package.json new file mode 100755 index 0000000..160d2d6 --- /dev/null +++ b/server/package.json @@ -0,0 +1,76 @@ +{ + "name": "server", + "version": "1.0.0", + "main": "index.js", + "license": "MIT", + "directories": { + "test": "test" + }, + "dependencies": { + "@types/connect-mongo": "^3.1.3", + "@types/express": "^4.17.6", + "@types/express-session": "^1.17.0", + "@types/mongodb": "^3.5.25", + "@types/node": "^14.11.10", + "amqp": "^0.2.7", + "async-retry": "1.3.1", + "axios": "^0.20.0", + "bcrypt": "^3.0.7", + "bitcoin-core": "^3.0.0", + "body-parser": "^1.19.0", + "compression": "^1.7.4", + "connect-mongo": "^3.2.0", + "cookie-parser": "^1.4.4", + "cors": "^2.8.5", + "csurf": "^1.10.0", + "dotenv": "^8.2.0", + "ethereumjs-tx": "^2.1.2", + "express": "^4.17.1", + "express-session": "^1.17.0", + "express-socket.io-session": "^1.3.5", + "express-useragent": "^1.0.13", + "express-validator": "^6.3.1", + "faker": "^4.1.0", + "helmet": "^3.21.2", + "lodash": "^4.17.20", + "loopback-connector-mongodb": "^5.2.1", + "mathjs": "^8.0.1", + "moment": "^2.29.1", + "moment-timezone": "^0.5.31", + "mongodb": "^3.6.3", + "mongoose": "^5.11.4", + "morgan": "^1.9.1", + "multer": "^1.4.2", + "node-cron": "^2.0.3", + "node-fetch": "^2.6.1", + "nodemailer": "^6.4.2", + "rate-limiter-flexible": "^1.2.2", + "redis": "^2.8.0", + "socket.io": "^3.0.3", + "socket.io-redis": "^5.2.0", + "socket.io-session-middleware": "^0.1.0", + "tronweb": "3.1.0", + "tsc": "^1.20150623.0", + "typegoose": "^5.9.1", + "uuid4": "^1.1.4", + "web3": "^1.3.0", + "winston": "^3.2.1" + }, + "devDependencies": { + "@types/lodash": "^4.14.155", + "chai": "^4.2.0", + "chai-datetime": "^1.5.0", + "jest": "^24.9.0", + "mocha": "^6.2.2", + "nodemon": "^2.0.2", + "standard": "^14.3.1", + "supertest": "^4.0.2", + "supertest-session": "^4.0.0", + "typescript": "^4.0.5" + }, + "scripts": { + "test-env": "export NODE_ENV=test && node server.js", + "test": "mocha --timeout 50000 --recursive", + "start": "node server.js --trace-sync-io" + } +} diff --git a/server/routes/admin.js b/server/routes/admin.js new file mode 100755 index 0000000..adfde0e --- /dev/null +++ b/server/routes/admin.js @@ -0,0 +1,689 @@ +"use strict"; +var __assign = (this && this.__assign) || function () { + __assign = Object.assign || function(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) + t[p] = s[p]; + } + return t; + }; + return __assign.apply(this, arguments); +}; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.adminRoutes = void 0; +var express = require("express"); +var logger_1 = require("../api/logger"); +var myError_1 = require("../api/myError"); +var auth_1 = require("../middlewares/auth"); +var user_1 = require("../db/user"); +var admin_1 = require("../db/admin"); +var currencies_1 = require("../db/currencies"); +var validation_1 = require("../middlewares/validation"); +var response_1 = require("../middlewares/response"); +var tryCtach_1 = require("../middlewares/tryCtach"); +var roles = ['Admin', 'Manager', 'Supporter']; +var managerEditableFields = ['name', 'lastName', 'email', 'isActive', 'role']; +var supporterEditableFields = ['name', 'lastName', 'email', 'isActive', 'role']; +var userEditableFields = ['isActive', 'userType']; +exports.adminRoutes = express.Router(); +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// AUTH ENDPOINTS //////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +exports.adminRoutes.post('/addCurrency', +// isAdmin, +validation_1.userValidationRules('body', 'currencyName'), validation_1.userValidationRules('body', 'persianName'), validation_1.userValidationRules('body', 'abName'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var currencyName = req.body.currencyName; + var perName = req.body.persianName; + var abName = req.body.abName; + var icon = req.body.icon; + currencies_1.Currencies.findOne({ name: currencyName }) + .then(function (curr) { + if (curr) { + var error = new myError_1["default"]('this currency is already exsis', 400, 5, 'ارز فوق وجود دارد !', 'خطا رخ داد'); + next(error); + } + else { + if ((currencyName === 'BITCOIN' && perName === 'بیت کوین' && abName === 'BTC') + || (currencyName === 'RIAL' && perName === 'ریال' && abName === 'IRR') + || (currencyName === 'TRON' && perName === 'ترون' && abName === 'TRX') + || (currencyName === 'ETHEREUM' && perName === 'اتریوم' && abName === 'ETH')) { + var currency = { + name: currencyName, + per_name: perName, + ab_name: abName, + icon: icon + }; + var newCurrency_1 = new currencies_1.Currencies(__assign({}, currency)); + newCurrency_1.save() + .then(function () { + response_1["default"](res, "currency created successfully", newCurrency_1._id); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('Currency persian name or ab name are not match with currency name', 400, 11, 'نام فارسی ارز یا نام مخفف ارز با نام ارز مطابقت ندارد.', 'خطا رخ داد'); + next(error); + } + } + })["catch"](function (err) { + next(err); + }); +})); +exports.adminRoutes.post('/register', validation_1.userValidationRules('body', 'email'), validation_1.userValidationRules('body', 'password'), validation_1.userValidationRules('body', 'name'), validation_1.userValidationRules('body', 'lastName'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var email = req.body.email; + var body = { + name: req.body.name, + lastName: req.body.lastName, + email: email, + password: req.body.password, + role: roles[0] + }; + admin_1.Admin.findOne({ role: roles[0] }) + .then(function (person) { + if (person && person.role === roles[0]) { + var error = new myError_1["default"]('The admin already exists!', 400, 4, 'ادمین قبلا ثبت شده است!', 'خطا رخ داد'); + next(error); + } + else { + var user_2 = new admin_1.Admin(__assign({}, body)); + user_2.save() + .then(function () { + var data = { + email: user_2.email, + role: user_2.role + }; + response_1["default"](res, 'Registration is done successfully', data); + })["catch"](function (err) { + if (err.name = 'MongoError' && err.code === 11000) { + logger_1.logger.error("The save action on User Collection with document " + email + " has some errors: " + err); + var error = new myError_1["default"]('The user has registered already!', 400, 9, 'شما قبلا ثبت نام کرده اید!', 'خطا رخ داد'); + next(error); + } + else { + logger_1.logger.error("The save action on User Collection with document " + email + " has some errors: " + err); + var error = new myError_1["default"]('Error happened during the registration!', 500, 9, 'در فرآیند ثبت نام مشکلی پیش آمده است!', 'خطا در سرور'); + next(error); + } + }); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.adminRoutes.post('/login', validation_1.userValidationRules('body', 'email'), validation_1.userValidationRules('body', 'password'), validation_1.validate, +// preventBruteForce, +tryCtach_1["default"](function (req, res, next) { + var agent = req.useragent; + admin_1.Admin.findOne({ email: req.body.email }) + .then(function (person) { + if (!person) { + var error = new myError_1["default"]('Email or Password are not valid!', 400, 8, 'ایمیل یا گذرواژه معتبر نیستند!', 'خطا رخ داد'); + next(error); + } + else if (person.isActive !== true) { + var error = new myError_1["default"]('The account is not active!', 400, 18, 'حساب کاربری شما غیرفعال شده است!', 'خطا رخ داد'); + next(error); + } + else { + person.comparePasswordPromise(req.body.password) + .then(function (isMatch) { + if (!isMatch) { + logger_1.logger.warn('Passwords are not match'); + var error = new myError_1["default"]('Email or Password are not valid!', 400, 8, 'ایمیل یا گذرواژه معتبر نیستند!', 'خطا رخ داد'); + next(error); + } + else { + var adminActivity = { + action: 'LOGIN', + timestamp: Date.now(), + device: agent.source, + ip: req.ip + }; + person.adminActivities.push(adminActivity); + person.save() + .then(function () { + req.session.adminId = person._id; + var profile = { + name: person.name, + lastName: person.lastName, + userId: person._id, + role: person.role + }; + response_1["default"](res, '', profile); + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.adminRoutes.post('/changePassword', auth_1.isAdmin, validation_1.userValidationRules('body', 'password'), validation_1.userValidationRules('body', 'newPassword'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var adminId = req.session.adminId; + admin_1.Admin.findOne({ _id: adminId }) + .then(function (person) { + if (person && person._id.toString() === adminId) { + person.comparePasswordPromise(req.body.password) + .then(function (isMatch) { + if (!isMatch) { + logger_1.logger.warn('Password is not valid!'); + var error = new myError_1["default"]('Inputs are not valid!', 400, 15, 'ورودی های درخواستی معتبر نیستند!', 'خطا رخ داد'); + next(error); + } + else { + person.password = req.body.newPassword; + person.save() + .then(function () { + response_1["default"](res, 'password is successfuly changed'); + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); + } + else { + logger_1.logger.warn('Email address is not valid!'); + var error = new myError_1["default"]('UserId is not valid!', 400, 12, 'آدرس ایمیل معتبر نیست!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +// This end point delete "Token" of users who want to logout from MongoDB. +exports.adminRoutes.get('/logout', auth_1.isAdmin, tryCtach_1["default"](function (req, res, next) { + var agant = req.useragent; + var userActivity = { + action: 'LOGOUT', + timestamp: Date.now(), + device: agant.source, + ip: req.ip + }; + user_1.User.findOneAndUpdate({ _id: req.session.userId }, { $push: { userActivities: userActivity } })["catch"](function (err) { + logger_1.logger.error("Updating user activity has some error: " + err + " "); + }); + req.session.destroy(); + response_1["default"](res); +})); +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// ADMINS ENDPOINTS //////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +exports.adminRoutes.get('/getTheManager', auth_1.isAdmin, validation_1.userValidationRules('query', 'username'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var username = req.query.username; + admin_1.Admin.findOne({ $and: [{ email: username }, { role: roles[1] }] }) + .then(function (person) { + if (person && person.email === username) { + var result = { + _id: person._id, + name: person.name, + lastName: person.lastName, + email: person.email, + isActive: person.isActive === true ? + 'مجوز فعالیت دارد' : + 'مجوز فعالیت او لغو شده است', + role: 'مدیر', + adminActivities: person.adminActivities + }; + response_1["default"](res, '', result); + } + else { + var error = new myError_1["default"]('The Manager does not exist!', 400, 11, 'چنین مدیری وجود ندارد!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.adminRoutes.get('/getManagersList', auth_1.isAdmin, tryCtach_1["default"](function (req, res, next) { + var adminId = req.session.adminId; + admin_1.Admin.findOne({ _id: adminId }) + .then(function (person) { + if (person && person._id.toString() === adminId && person.role === roles[0]) { + admin_1.Admin.find({ role: roles[1] }) + .then(function (managers) { + managers = managers.map(function (i) { + return { + lastName: i.lastName, + username: i.email, + isActive: i.isActive ? + 'مجوز فعالیت دارد' : + 'مجوز فعالیت او لغو شده است' + }; + }); + response_1["default"](res, '', managers); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('You are not authorized to do this task!', 400, 1, 'شما مجاز به انجام چنین کاری نیستید!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.adminRoutes.post('/editManagers', auth_1.isAdmin, validation_1.userValidationRules('body', '_id'), validation_1.userValidationRules('body', 'managerName'), validation_1.userValidationRules('body', 'managerLastName'), validation_1.userValidationRules('body', 'managerEmail'), validation_1.userValidationRules('body', 'managerIsActive'), validation_1.userValidationRules('body', 'managerRole'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var adminId = req.session.adminId; + var managerId = req.body._id; + var body = { + name: req.body.managerName, + lastName: req.body.managerLastName, + email: req.body.managerEmail, + isActive: req.body.managerIsActive, + role: req.body.managerRole + }; + admin_1.Admin.findOne({ _id: adminId }) + .then(function (person) { + if (person.role === roles[0]) { + admin_1.Admin.findOne({ _id: managerId }) + .then(function (manager) { return __awaiter(void 0, void 0, void 0, function () { + var error; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!(manager && manager._id.toString() === managerId)) return [3 /*break*/, 2]; + return [4 /*yield*/, Object.keys(body).map(function (element) { + if (body["" + element] || ((element === 'isActive') && (body['isActive'] === true || body['isActive'] === false))) { + if (managerEditableFields.includes(element)) { + manager["" + element] = body["" + element]; + } + else { + logger_1.logger.warn('Some fields are not existed or valid.'); + var error = new myError_1["default"]('Some fields are not existed or valid.', 400, 1, 'برخی از فیلدهای درخواستی ناموجود یا نامعنبر است!', 'خطا رخ داد'); + throw (error); + } + } + })]; + case 1: + _a.sent(); + manager.save() + .then(function () { + var result = { + _id: manager._id, + name: manager.name, + lastName: manager.lastName, + email: manager.email, + isActive: manager.isActive, + role: manager.role, + adminActivities: manager.adminActivities + }; + response_1["default"](res, 'The data is chenged successfully!', result); + })["catch"](function (err) { + next(err); + }); + return [3 /*break*/, 3]; + case 2: + logger_1.logger.warn('The manager does not exist!'); + error = new myError_1["default"]('The manager does not exist!', 400, 1, 'چنین مدیری در سامانه ثبت نشده است!', 'خطا رخ داد'); + next(error); + _a.label = 3; + case 3: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + var message = err.message ? err.message : err; + logger_1.logger.error(message); + next(err); + }); + } + else { + logger_1.logger.warn('You are not authorized to do this task!'); + var error = new myError_1["default"]('You are not authorized to do this task!', 400, 1, 'شما مجاز به انجام چنین کاری نیستید!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.adminRoutes.post('/addManagers', auth_1.isAdmin, validation_1.userValidationRules('body', 'email'), validation_1.userValidationRules('body', 'password'), validation_1.userValidationRules('body', 'name'), validation_1.userValidationRules('body', 'lastName'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var adminId = req.session.adminId; + admin_1.Admin.findOne({ _id: adminId }) + .then(function (person) { + if (person.role === roles[0]) { + var admin_2 = new admin_1.Admin({ + email: req.body.email, + password: req.body.password, + name: req.body.name, + lastName: req.body.lastName, + role: roles[1] + }); + admin_2.save() + .then(function () { + var manager = { + email: admin_2.email, + name: admin_2.name, + lastName: admin_2.lastName, + role: admin_2.role + }; + response_1["default"](res, 'The manager is added successfully!', manager); + })["catch"](function (err) { + if (err.name = 'MongoError' && err.code === 11000) { + logger_1.logger.warn("The save action on User Collection with document " + req.body.lastName + " has some errors: " + err); + var error = new myError_1["default"]('The user has registered already!', 400, 9, 'کاربر قبلا ثبت نام کرده است!', 'خطا رخ داد'); + next(error); + } + else { + logger_1.logger.error("The save action on User Collection with document " + req.body.lastName + " has some errors: " + err); + var error = new myError_1["default"]('Error happened during the registration!', 500, 9, 'در فرآیند ثبت نام مشکلی پیش آمده است!', 'خطا رخ داد'); + next(error); + } + }); + } + else { + var error = new myError_1["default"]('You are not authorized to do this task!', 400, 1, 'شما مجاز به انجام چنین کاری نیستید!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.adminRoutes.get('/getTheSupporter', validation_1.userValidationRules('query', 'username'), validation_1.validate, auth_1.isAdmin, tryCtach_1["default"](function (req, res, next) { + var username = req.query.username; + admin_1.Admin.findOne({ $and: [{ email: username }, { role: roles[2] }] }) + .then(function (person) { + if (person && person.email === username) { + var result = { + _id: person._id, + name: person.name, + lastName: person.lastName, + email: person.email, + isActive: person.isActive === true ? + 'مجوز فعالیت دارد' : + 'مجوز فعالیت او لغو شده است', + role: 'پشتیبان', + adminActivities: person.adminActivities + }; + response_1["default"](res, '', result); + } + else { + var error = new myError_1["default"]('The supporter does not exist!', 400, 11, 'چنین پشتیبانی وجود ندارد!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.adminRoutes.get('/getSupportersList', auth_1.isAdmin, tryCtach_1["default"](function (req, res, next) { + var adminId = req.session.adminId; + admin_1.Admin.findOne({ _id: adminId }) + .then(function (person) { + if (person && person._id.toString() === adminId && [roles[0], roles[1]].includes(person.role)) { + admin_1.Admin.find({ role: roles[2] }) + .then(function (supporters) { + supporters = supporters.map(function (i) { + return { + lastName: i.lastName, + username: i.email, + isActive: i.isActive ? + 'مجوز فعالیت دارد' : + 'مجوز فعالیت او لغو شده است' + }; + }); + response_1["default"](res, '', supporters); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('You are not authorized to do this task!', 400, 1, 'شما مجاز به انجام چنین کاری نیستید!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.adminRoutes.post('/editSupporters', auth_1.isAdmin, validation_1.userValidationRules('body', '_id'), validation_1.userValidationRules('body', 'supporterName'), validation_1.userValidationRules('body', 'supporterLastName'), validation_1.userValidationRules('body', 'supporterEmail'), validation_1.userValidationRules('body', 'supporterIsActive'), validation_1.userValidationRules('body', 'supporterRole'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var adminId = req.session.adminId; + var supporterId = req.body._id; + var body = { + name: req.body.supporterName, + lastName: req.body.supporterLastName, + email: req.body.supporterEmail, + isActive: req.body.supporterIsActive, + role: req.body.supporterRole + }; + admin_1.Admin.findOne({ _id: adminId }) + .then(function (person) { + if (person.role === roles[0] || person.role === roles[1]) { + admin_1.Admin.findOne({ _id: supporterId }) + .then(function (supporter) { return __awaiter(void 0, void 0, void 0, function () { + var error; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!(supporter && supporter._id.toString() === supporterId)) return [3 /*break*/, 2]; + return [4 /*yield*/, Object.keys(body).map(function (element) { + if (body["" + element] || (element === 'isActive') && (body['isActive'] === true || body['isActive'] === false)) { + console.log(element); + if (supporterEditableFields.includes(element)) { + supporter["" + element] = body["" + element]; + } + else { + logger_1.logger.warn('Some fields are not existed or valid.'); + var error = new myError_1["default"]('Some fields are not existed or valid.', 400, 1, 'برخی از فیلدهای درخواستی ناموجود یا نامعنبر است!', 'خطا رخ داد'); + throw (error); + } + } + })]; + case 1: + _a.sent(); + supporter.save() + .then(function () { + var result = { + _id: supporter._id, + name: supporter.name, + lastName: supporter.lastName, + email: supporter.email, + isActive: supporter.isActive, + role: supporter.role, + adminActivities: supporter.adminActivities + }; + response_1["default"](res, 'The data is chenged successfully!', result); + })["catch"](function (err) { + var message = err.message ? err.message : err; + logger_1.logger.error(message); + next(err); + }); + return [3 /*break*/, 3]; + case 2: + logger_1.logger.warn('The supporter does not exist!'); + error = new myError_1["default"]('The supporter does not exist!', 400, 1, 'چنین پشتیبانی در سامانه ثبت نشده است!', 'خطا رخ داد'); + next(error); + _a.label = 3; + case 3: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + var message = err.message ? err.message : err; + logger_1.logger.error(message); + next(err); + }); + } + else { + logger_1.logger.warn('You are not authorized to do this task!'); + var error = new myError_1["default"]('You are not authorized to do this task!', 400, 1, 'شما مجاز به انجام چنین کاری نیستید!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.adminRoutes.post('/addSupporters', auth_1.isAdmin, validation_1.userValidationRules('body', 'email'), validation_1.userValidationRules('body', 'password'), validation_1.userValidationRules('body', 'name'), validation_1.userValidationRules('body', 'lastName'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var adminId = req.session.adminId; + admin_1.Admin.findOne({ _id: adminId }) + .then(function (person) { + if (person.role === roles[0] || person.role === roles[1]) { + var admin_3 = new admin_1.Admin({ + email: req.body.email, + password: req.body.password, + name: req.body.name, + lastName: req.body.lastName, + role: roles[2] + }); + admin_3.save() + .then(function () { + var supporter = { + email: admin_3.email, + name: admin_3.name, + lastName: admin_3.lastName, + role: admin_3.role + }; + response_1["default"](res, 'The manager is added successfully!', supporter); + })["catch"](function (err) { + if (err.name = 'MongoError' && err.code === 11000) { + logger_1.logger.warn("The save action on User Collection with document " + req.body.lastName + " has some errors: " + err); + var error = new myError_1["default"]('The user has registered already!', 400, 9, 'کاربر قبلا ثبت نام کرده است!', 'خطا رخ داد'); + next(error); + } + else { + logger_1.logger.error("The save action on User Collection with document " + req.body.lastName + " has some errors: " + err); + var error = new myError_1["default"]('Error happened during the registration!', 500, 9, 'در فرآیند ثبت نام مشکلی پیش آمده است!', 'خطا رخ داد'); + next(error); + } + }); + } + else { + var error = new myError_1["default"]('You are not authorized to do this task!', 400, 1, 'شما مجاز به انجام چنین کاری نیستید!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.adminRoutes.post('/editUserProfile', auth_1.isAdmin, validation_1.userValidationRules('body', '_id'), validation_1.userValidationRules('body', 'userIsActive'), validation_1.userValidationRules('body', 'userUserType'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + console.log(req.body); + var userId = req.body._id; + var adminId = req.session.adminId; + var body = { + isActive: req.body.userIsActive, + userType: req.body.userUserType + }; + user_1.User.findOne({ _id: userId }) + .then(function (user) { + if (user && user._id.toString() === userId) { + admin_1.Admin.findOne({ _id: adminId }) + .then(function (person) { return __awaiter(void 0, void 0, void 0, function () { + var error; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!(person && person._id.toString() === adminId)) return [3 /*break*/, 2]; + return [4 /*yield*/, Object.keys(body).map(function (element) { + if (body["" + element] || (element === 'isActive') && (body['isActive'] === true || body['isActive'] === false)) { + if (userEditableFields.includes(element)) { + if (element === 'userType' && body["" + element] === 'Vip') { + if (person.role === roles[0]) { + user["" + element] = body["" + element]; + } + else { + var error = new myError_1["default"]('You are not authorized to do this task!', 400, 1, 'شما مجاز به انجام چنین کاری نیستید!', 'خطا رخ داد'); + throw (error); + } + } + else { + if ([roles[0], roles[1]].includes(person.role)) { + user["" + element] = body["" + element]; + } + else { + var error = new myError_1["default"]('You are not authorized to do this task!', 400, 1, 'شما مجاز به انجام چنین کاری نیستید!', 'خطا رخ داد'); + throw (error); + } + } + } + else { + logger_1.logger.warn('Some fields are not existed or valid.'); + var error = new myError_1["default"]('Some fields are not existed or valid.', 400, 1, 'برخی از فیلدهای درخواستی ناموجود یا نامعنبر است!', 'خطا رخ داد'); + throw (error); + } + } + })]; + case 1: + _a.sent(); + user.save() + .then(function () { + var result = { + _id: user._id, + isActive: user.isActive, + userType: user.userType, + name: user.name, + lastName: user.lastName, + email: user.email, + phoneNumber: user.phoneNumber + }; + response_1["default"](res, 'The user is changed successfully!', result); + })["catch"](function (err) { + var message = err.message ? err.message : err; + logger_1.logger.error(message); + next(err); + }); + return [3 /*break*/, 3]; + case 2: + logger_1.logger.warn('The admin does not exist!'); + error = new myError_1["default"]('The admin does not exist!', 400, 1, 'چنین ادمینی در سامانه ثبت نشده است!', 'خطا رخ داد'); + next(error); + _a.label = 3; + case 3: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + next(err); + }); + } + else { + logger_1.logger.warn('The user does not exist!'); + var error = new myError_1["default"]('The user does not exist!', 400, 1, 'چنین کاربری در سامانه ثبت نشده است!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); diff --git a/server/routes/admin.ts b/server/routes/admin.ts new file mode 100755 index 0000000..063b4a6 --- /dev/null +++ b/server/routes/admin.ts @@ -0,0 +1,898 @@ +import * as express from 'express'; + +import { logger } from '../api/logger' +import myError from '../api/myError' +import { isAdmin } from '../middlewares/auth' + +import { User } from '../db/user' +import { Admin } from '../db/admin' +import { Currencies } from '../db/currencies' + + +import { userValidationRules, validate } from '../middlewares/validation' +import successRes from '../middlewares/response' +import tryCatch from '../middlewares/tryCtach' +const roles = ['Admin', 'Manager', 'Supporter'] +const managerEditableFields = ['name', 'lastName', 'email', 'isActive', 'role'] +const supporterEditableFields = ['name', 'lastName', 'email', 'isActive', 'role'] +const userEditableFields = ['isActive', 'userType'] + +export const adminRoutes = express.Router() + +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// AUTH ENDPOINTS //////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// + + +adminRoutes.post('/addCurrency', +// isAdmin, +userValidationRules('body','currencyName'), +userValidationRules('body','persianName'), +userValidationRules('body','abName'), +validate, +tryCatch((req, res, next) => { + + const currencyName = req.body.currencyName + const perName = req.body.persianName + const abName = req.body.abName + const icon = req.body.icon + Currencies.findOne({name : currencyName}) + .then( (curr) => { + if(curr) { + const error = new myError( + 'this currency is already exsis', + 400, + 5, + 'ارز فوق وجود دارد !', + 'خطا رخ داد' + ) + next(error) + } else { + if((currencyName === 'BITCOIN' && perName === 'بیت کوین' && abName === 'BTC') + || (currencyName === 'RIAL' && perName === 'ریال' && abName === 'IRR') + || (currencyName === 'TRON' && perName === 'ترون' && abName === 'TRX') + || (currencyName === 'ETHEREUM' && perName === 'اتریوم' && abName === 'ETH')) { + const currency = { + name: currencyName, + per_name: perName, + ab_name: abName, + icon + } + const newCurrency = new Currencies({ ...currency }) + newCurrency.save() + .then(()=>{ + successRes(res,"currency created successfully", newCurrency._id) + }) + .catch( (err) => { + next(err) + }) + } else { + const error = new myError( + 'Currency persian name or ab name are not match with currency name', + 400, + 11, + 'نام فارسی ارز یا نام مخفف ارز با نام ارز مطابقت ندارد.', + 'خطا رخ داد' + ) + next(error) + } + } + }) + .catch((err) =>{ + next(err) + }) +})) + + +adminRoutes.post('/register', + userValidationRules('body', 'email'), + userValidationRules('body', 'password'), + userValidationRules('body', 'name'), + userValidationRules('body', 'lastName'), + validate, + tryCatch((req, res, next) => { + const email = req.body.email + const body = { + name: req.body.name, + lastName: req.body.lastName, + email: email, + password: req.body.password, + role: roles[0] + } + Admin.findOne({ role: roles[0] }) + .then((person: any) => { + if (person && person.role === roles[0]) { + const error = new myError( + 'The admin already exists!', + 400, + 4, + 'ادمین قبلا ثبت شده است!', + 'خطا رخ داد' + ) + next(error) + } else { + const user = new Admin({ ...body }) + user.save() + .then(() => { + const data = { + email: user.email, + role: user.role + } + successRes(res, 'Registration is done successfully', data) + }) + .catch((err) => { + if (err.name = 'MongoError' && err.code === 11000) { + logger.error(`The save action on User Collection with document ${email} has some errors: ${err}`) + const error = new myError( + 'The user has registered already!', + 400, + 9, + 'شما قبلا ثبت نام کرده اید!', + 'خطا رخ داد' + ) + next(error) + } else { + logger.error(`The save action on User Collection with document ${email} has some errors: ${err}`) + const error = new myError( + 'Error happened during the registration!', + 500, + 9, + 'در فرآیند ثبت نام مشکلی پیش آمده است!', + 'خطا در سرور' + ) + next(error) + } + }) + } + }) + .catch((err) => { + next(err) + }) + })) + +adminRoutes.post('/login', + userValidationRules('body', 'email'), + userValidationRules('body', 'password'), + validate, + // preventBruteForce, + tryCatch((req, res, next) => { + const agent = req.useragent + Admin.findOne({ email: req.body.email }) + .then((person: any) => { + if (!person) { + const error = new myError( + 'Email or Password are not valid!', + 400, + 8, + 'ایمیل یا گذرواژه معتبر نیستند!', + 'خطا رخ داد' + ) + next(error) + } else if (person.isActive !== true) { + const error = new myError( + 'The account is not active!', + 400, + 18, + 'حساب کاربری شما غیرفعال شده است!', + 'خطا رخ داد' + ) + next(error) + } else { + person.comparePasswordPromise(req.body.password) + .then((isMatch) => { + if (!isMatch) { + logger.warn('Passwords are not match') + const error = new myError( + 'Email or Password are not valid!', + 400, + 8, + 'ایمیل یا گذرواژه معتبر نیستند!', + 'خطا رخ داد' + ) + next(error) + } else { + const adminActivity = { + action: 'LOGIN', + timestamp: Date.now(), + device: agent.source, + ip: req.ip + } + person.adminActivities.push(adminActivity) + person.save() + .then(() => { + req.session.adminId = person._id + const profile = { + name: person.name, + lastName: person.lastName, + userId: person._id, + role: person.role + } + successRes(res, '', profile) + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) + })) + +adminRoutes.post('/changePassword', +isAdmin, +userValidationRules('body', 'password'), +userValidationRules('body', 'newPassword'), +validate, +tryCatch((req, res, next) => { + const adminId = req.session.adminId + Admin.findOne({ _id: adminId }) + .then((person: any) => { + if (person && person._id.toString() === adminId) { + person.comparePasswordPromise(req.body.password) + .then((isMatch) => { + if (!isMatch) { + logger.warn('Password is not valid!') + const error = new myError( + 'Inputs are not valid!', + 400, + 15, + 'ورودی های درخواستی معتبر نیستند!', + 'خطا رخ داد' + ) + next(error) + } else { + person.password = req.body.newPassword + person.save() + .then(() => { + successRes(res, 'password is successfuly changed') + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) + } else { + logger.warn('Email address is not valid!') + const error = new myError( + 'UserId is not valid!', + 400, + 12, + 'آدرس ایمیل معتبر نیست!', + 'خطا رخ داد', + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) +})) + +// This end point delete "Token" of users who want to logout from MongoDB. +adminRoutes.get('/logout', +isAdmin, +tryCatch((req, res, next) => { + const agant = req.useragent + const userActivity = { + action: 'LOGOUT', + timestamp: Date.now(), + device: agant.source, + ip: req.ip + } + User.findOneAndUpdate({ _id: req.session.userId }, { $push: { userActivities: userActivity } }) + .catch((err) => { + logger.error(`Updating user activity has some error: ${err} `) + }) + req.session.destroy() + successRes(res) +})) + +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// ADMINS ENDPOINTS //////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// + + +adminRoutes.get('/getTheManager', + isAdmin, + userValidationRules('query', 'username'), + validate, + tryCatch((req, res, next) => { + const username = req.query.username + Admin.findOne({ $and: [{ email: username }, { role: roles[1] }] }) + .then((person: any) => { + if (person && person.email === username) { + const result = { + _id: person._id, + name: person.name, + lastName: person.lastName, + email: person.email, + isActive: person.isActive === true ? + 'مجوز فعالیت دارد' : + 'مجوز فعالیت او لغو شده است', + role: 'مدیر', + adminActivities: person.adminActivities + } + successRes(res, '', result) + } else { + const error = new myError( + 'The Manager does not exist!', + 400, + 11, + 'چنین مدیری وجود ندارد!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + })) + +adminRoutes.get('/getManagersList', + isAdmin, + tryCatch((req, res, next) => { + const adminId = req.session.adminId + Admin.findOne({ _id: adminId }) + .then((person: any) => { + if (person && person._id.toString() === adminId && person.role === roles[0]) { + Admin.find({ role: roles[1] }) + .then((managers: any) => { + managers = managers.map((i) => { + return { + lastName: i.lastName, + username: i.email, + isActive: i.isActive ? + 'مجوز فعالیت دارد' : + 'مجوز فعالیت او لغو شده است' + } + }) + successRes(res, '', managers) + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'You are not authorized to do this task!', + 400, + 1, + 'شما مجاز به انجام چنین کاری نیستید!', + 'خطا رخ داد', + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + })) + +adminRoutes.post('/editManagers', + isAdmin, + userValidationRules('body', '_id'), + userValidationRules('body', 'managerName'), + userValidationRules('body', 'managerLastName'), + userValidationRules('body', 'managerEmail'), + userValidationRules('body', 'managerIsActive'), + userValidationRules('body', 'managerRole'), + validate, + tryCatch((req, res, next) => { + const adminId = req.session.adminId + const managerId = req.body._id + const body = { + name: req.body.managerName, + lastName: req.body.managerLastName, + email: req.body.managerEmail, + isActive: req.body.managerIsActive, + role: req.body.managerRole + } + Admin.findOne({ _id: adminId }) + .then((person: any) => { + if (person.role === roles[0]) { + Admin.findOne({ _id: managerId }) + .then(async (manager: any) => { + if (manager && manager._id.toString() === managerId) { + await Object.keys(body).map((element: any) => { + if (body[`${element}`] || ((element === 'isActive') && (body['isActive'] === true || body['isActive'] === false))) { + if (managerEditableFields.includes(element)) { + manager[`${element}`] = body[`${element}`] + } else { + logger.warn('Some fields are not existed or valid.') + const error = new myError( + 'Some fields are not existed or valid.', + 400, + 1, + 'برخی از فیلدهای درخواستی ناموجود یا نامعنبر است!', + 'خطا رخ داد' + ) + throw (error) + } + } + }) + manager.save() + .then(() => { + const result = { + _id: manager._id, + name: manager.name, + lastName: manager.lastName, + email: manager.email, + isActive: manager.isActive, + role: manager.role, + adminActivities: manager.adminActivities + } + successRes(res, 'The data is chenged successfully!', result) + }) + .catch((err) => { + next(err) + }) + } else { + logger.warn('The manager does not exist!') + const error = new myError( + 'The manager does not exist!', + 400, + 1, + 'چنین مدیری در سامانه ثبت نشده است!', + 'خطا رخ داد', + ) + next(error) + } + }) + .catch((err) => { + const message = err.message ? err.message : err; + logger.error(message) + next(err) + }) + } else { + logger.warn('You are not authorized to do this task!') + const error = new myError( + 'You are not authorized to do this task!', + 400, + 1, + 'شما مجاز به انجام چنین کاری نیستید!', + 'خطا رخ داد', + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + })) + +adminRoutes.post('/addManagers', + isAdmin, + userValidationRules('body', 'email'), + userValidationRules('body', 'password'), + userValidationRules('body', 'name'), + userValidationRules('body', 'lastName'), + validate, + tryCatch((req, res, next) => { + const adminId = req.session.adminId + Admin.findOne({ _id: adminId }) + .then((person: any) => { + if (person.role === roles[0]) { + const admin = new Admin({ + email: req.body.email, + password: req.body.password, + name: req.body.name, + lastName: req.body.lastName, + role: roles[1] + }) + admin.save() + .then(() => { + const manager = { + email: admin.email, + name: admin.name, + lastName: admin.lastName, + role: admin.role + } + successRes(res, 'The manager is added successfully!', manager) + }) + .catch((err) => { + if (err.name = 'MongoError' && err.code === 11000) { + logger.warn(`The save action on User Collection with document ${req.body.lastName} has some errors: ${err}`) + const error = new myError( + 'The user has registered already!', + 400, + 9, + 'کاربر قبلا ثبت نام کرده است!', + 'خطا رخ داد', + ) + next(error) + } else { + logger.error(`The save action on User Collection with document ${req.body.lastName} has some errors: ${err}`) + const error = new myError( + 'Error happened during the registration!', + 500, + 9, + 'در فرآیند ثبت نام مشکلی پیش آمده است!', + 'خطا رخ داد', + ) + next(error) + } + }) + + } else { + const error = new myError( + 'You are not authorized to do this task!', + 400, + 1, + 'شما مجاز به انجام چنین کاری نیستید!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + })) + + +adminRoutes.get('/getTheSupporter', + userValidationRules('query', 'username'), + validate, + isAdmin, + tryCatch((req, res, next) => { + const username = req.query.username + Admin.findOne({ $and: [{ email: username }, { role: roles[2] }] }) + .then((person: any) => { + if (person && person.email === username) { + const result = { + _id: person._id, + name: person.name, + lastName: person.lastName, + email: person.email, + isActive: person.isActive === true ? + 'مجوز فعالیت دارد' : + 'مجوز فعالیت او لغو شده است', + role: 'پشتیبان', + adminActivities: person.adminActivities + } + successRes(res, '', result) + } else { + const error = new myError( + 'The supporter does not exist!', + 400, + 11, + 'چنین پشتیبانی وجود ندارد!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + })) + +adminRoutes.get('/getSupportersList', + isAdmin, + tryCatch((req, res, next) => { + const adminId = req.session.adminId + Admin.findOne({ _id: adminId }) + .then((person: any) => { + if (person && person._id.toString() === adminId && [roles[0], roles[1]].includes(person.role)) { + Admin.find({ role: roles[2] }) + .then((supporters: any) => { + supporters = supporters.map((i) => { + return { + lastName: i.lastName, + username: i.email, + isActive: i.isActive ? + 'مجوز فعالیت دارد' : + 'مجوز فعالیت او لغو شده است' + } + }) + successRes(res, '', supporters) + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'You are not authorized to do this task!', + 400, + 1, + 'شما مجاز به انجام چنین کاری نیستید!', + 'خطا رخ داد', + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + })) + +adminRoutes.post('/editSupporters', + isAdmin, + userValidationRules('body', '_id'), + userValidationRules('body', 'supporterName'), + userValidationRules('body', 'supporterLastName'), + userValidationRules('body', 'supporterEmail'), + userValidationRules('body', 'supporterIsActive'), + userValidationRules('body', 'supporterRole'), + validate, + tryCatch((req, res, next) => { + const adminId = req.session.adminId + const supporterId = req.body._id + const body = { + name: req.body.supporterName, + lastName: req.body.supporterLastName, + email: req.body.supporterEmail, + isActive: req.body.supporterIsActive, + role: req.body.supporterRole + } + Admin.findOne({ _id: adminId }) + .then((person: any) => { + if (person.role === roles[0] || person.role === roles[1]) { + Admin.findOne({ _id: supporterId }) + .then(async (supporter: any) => { + if (supporter && supporter._id.toString() === supporterId) { + await Object.keys(body).map((element: any) => { + if (body[`${element}`] || (element === 'isActive') && (body['isActive'] === true || body['isActive'] === false)) { + console.log(element) + if (supporterEditableFields.includes(element)) { + supporter[`${element}`] = body[`${element}`] + } else { + logger.warn('Some fields are not existed or valid.') + const error = new myError( + 'Some fields are not existed or valid.', + 400, + 1, + 'برخی از فیلدهای درخواستی ناموجود یا نامعنبر است!', + 'خطا رخ داد' + ) + throw (error) + } + } + }); + supporter.save() + .then(() => { + const result = { + _id: supporter._id, + name: supporter.name, + lastName: supporter.lastName, + email: supporter.email, + isActive: supporter.isActive, + role: supporter.role, + adminActivities: supporter.adminActivities + } + successRes(res, 'The data is chenged successfully!', result) + }) + .catch((err) => { + const message = err.message ? err.message : err; + logger.error(message) + next(err) + }) + } else { + logger.warn('The supporter does not exist!') + const error = new myError( + 'The supporter does not exist!', + 400, + 1, + 'چنین پشتیبانی در سامانه ثبت نشده است!', + 'خطا رخ داد', + ) + next(error) + } + }) + .catch((err) => { + const message = err.message ? err.message : err; + logger.error(message) + next(err) + }) + } else { + logger.warn('You are not authorized to do this task!') + const error = new myError( + 'You are not authorized to do this task!', + 400, + 1, + 'شما مجاز به انجام چنین کاری نیستید!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + })) + +adminRoutes.post('/addSupporters', + isAdmin, + userValidationRules('body', 'email'), + userValidationRules('body', 'password'), + userValidationRules('body', 'name'), + userValidationRules('body', 'lastName'), + validate, + tryCatch((req, res, next) => { + const adminId = req.session.adminId + Admin.findOne({ _id: adminId }) + .then((person: any) => { + if (person.role === roles[0] || person.role === roles[1]) { + const admin = new Admin({ + email: req.body.email, + password: req.body.password, + name: req.body.name, + lastName: req.body.lastName, + role: roles[2] + }) + admin.save() + .then(() => { + const supporter = { + email: admin.email, + name: admin.name, + lastName: admin.lastName, + role: admin.role + } + successRes(res, 'The manager is added successfully!', supporter) + }) + .catch((err) => { + if (err.name = 'MongoError' && err.code === 11000) { + logger.warn(`The save action on User Collection with document ${req.body.lastName} has some errors: ${err}`) + const error = new myError( + 'The user has registered already!', + 400, + 9, + 'کاربر قبلا ثبت نام کرده است!', + 'خطا رخ داد', + ) + next(error) + } else { + logger.error(`The save action on User Collection with document ${req.body.lastName} has some errors: ${err}`) + const error = new myError( + 'Error happened during the registration!', + 500, + 9, + 'در فرآیند ثبت نام مشکلی پیش آمده است!', + 'خطا رخ داد', + ) + next(error) + } + }) + } else { + const error = new myError( + 'You are not authorized to do this task!', + 400, + 1, + 'شما مجاز به انجام چنین کاری نیستید!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + })) + +adminRoutes.post('/editUserProfile', + isAdmin, + userValidationRules('body', '_id'), + userValidationRules('body', 'userIsActive'), + userValidationRules('body', 'userUserType'), + validate, + tryCatch((req, res, next) => { + console.log(req.body) + const userId = req.body._id + const adminId = req.session.adminId + const body = { + isActive: req.body.userIsActive, + userType: req.body.userUserType + } + User.findOne({ _id: userId }) + .then((user) => { + if (user && user._id.toString() === userId) { + Admin.findOne({ _id: adminId }) + .then(async (person: any) => { + if (person && person._id.toString() === adminId) { + await Object.keys(body).map((element: any) => { + if (body[`${element}`] || (element === 'isActive') && (body['isActive'] === true || body['isActive'] === false)) { + if (userEditableFields.includes(element)) { + if (element === 'userType' && body[`${element}`] === 'Vip') { + if (person.role === roles[0]) { + user[`${element}`] = body[`${element}`] + } else { + const error = new myError( + 'You are not authorized to do this task!', + 400, + 1, + 'شما مجاز به انجام چنین کاری نیستید!', + 'خطا رخ داد', + ) + throw(error) + } + } else { + if ([roles[0], roles[1]].includes(person.role)) { + user[`${element}`] = body[`${element}`] + } else { + const error = new myError( + 'You are not authorized to do this task!', + 400, + 1, + 'شما مجاز به انجام چنین کاری نیستید!', + 'خطا رخ داد', + ) + throw(error) + } + } + } else { + logger.warn('Some fields are not existed or valid.') + const error = new myError( + 'Some fields are not existed or valid.', + 400, + 1, + 'برخی از فیلدهای درخواستی ناموجود یا نامعنبر است!', + 'خطا رخ داد' + ) + throw (error) + } + } + }) + user.save() + .then(() => { + const result = { + _id: user._id, + isActive: user.isActive, + userType: user.userType, + name: user.name, + lastName: user.lastName, + email: user.email, + phoneNumber: user.phoneNumber + } + successRes(res, 'The user is changed successfully!', result) + }) + .catch((err) => { + const message = err.message ? err.message : err; + logger.error(message) + next(err) + }) + } else { + logger.warn('The admin does not exist!') + const error = new myError( + 'The admin does not exist!', + 400, + 1, + 'چنین ادمینی در سامانه ثبت نشده است!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } else { + logger.warn('The user does not exist!') + const error = new myError( + 'The user does not exist!', + 400, + 1, + 'چنین کاربری در سامانه ثبت نشده است!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + })) + + diff --git a/server/routes/auth.js b/server/routes/auth.js new file mode 100755 index 0000000..77662dd --- /dev/null +++ b/server/routes/auth.js @@ -0,0 +1,740 @@ +"use strict"; +var __assign = (this && this.__assign) || function () { + __assign = Object.assign || function(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) + t[p] = s[p]; + } + return t; + }; + return __assign.apply(this, arguments); +}; +exports.__esModule = true; +exports.authRoutes = void 0; +var express = require("express"); +exports.authRoutes = express.Router(); +var uuid4 = require("uuid4"); +var crypto = require("crypto"); +var mongoose = require("mongoose"); +var logger_1 = require("../api/logger"); +var amqp_1 = require("../api/amqp"); +var myError_1 = require("../api/myError"); +var user_1 = require("../db/user"); +var validation_1 = require("../middlewares/validation"); +var response_1 = require("../middlewares/response"); +var tryCtach_1 = require("../middlewares/tryCtach"); +var auth_1 = require("../middlewares/auth"); +var fetch = require("node-fetch"); +var preventBruteForce_1 = require("../middlewares/preventBruteForce"); +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// GET ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +// This end point check "Authentication" of users from MongoDB. +exports.authRoutes.get('/auth', preventBruteForce_1.rateLimiterMiddleware, tryCtach_1["default"](function (req, res, next) { + if (!req.session.userId) { + logger_1.logger.error('Unauthorized cookie'); + var error = new myError_1["default"]('Unauthorized cookie', 400, 1, 'کاربر حق دسترسی ندارد!', 'خطا رخ داد'); + next(error); + } + else { + response_1["default"](res, '', { isAuth: true }); + } +})); +// This end point delete "Token" of users who want to logout from MongoDB. +exports.authRoutes.get('/logout', preventBruteForce_1.rateLimiterMiddleware, auth_1.isAuthorized, tryCtach_1["default"](function (req, res, next) { + var agant = req.useragent; + var userActivity = { + action: 'LOGOUT', + timestamp: Date.now(), + device: agant.source, + ip: req.ip + }; + user_1.User.findOneAndUpdate({ _id: req.session.userId }, { $push: { userActivities: userActivity } })["catch"](function (err) { + logger_1.logger.error("Updating user activity has some error: " + err + " "); + }); + req.session.destroy(); + response_1["default"](res); +})); +exports.authRoutes.get('/verifyEmails', preventBruteForce_1.rateLimiterMiddleware, validation_1.userValidationRules('query', 'string'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var id = req.query.string; + user_1.VerificationCode.findOne({ name: id }) + .then(function (doc) { + if (!doc) { + var error = new myError_1["default"]('Verification Code is not valid!', 400, 5, 'کد راستی آزمایی معتبر نیست!', 'خطا رخ داد'); + next(error); + } + else { + user_1.User.findOne({ emailVerificationString: doc._id }) + .then(function (user) { + if (user && user.emailVerificationString.toString() === doc._id.toString()) { + user.email.validated = true; + user.emailVerificationString = undefined; + user.email.address = doc.email; + user.save() + .then(function () { + var data = { + email: user.email.address + }; + doc.remove()["catch"](function (err) { + logger_1.logger.error(err); + }); + response_1["default"](res, 'Email is verified', data); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('Verification Code is not valid!', 400, 5, 'کد راستی آزمایی معتبر نیست!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + logger_1.logger.error("The query on User Collection with emailVerificationString " + id + " has some errors: " + err); + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.authRoutes.get('/requestForPhoneCode', preventBruteForce_1.rateLimiterMiddleware, validation_1.userValidationRules('query', 'phoneNumber'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var userId = req.session.userId; + var phoneNumber = validation_1.numbersFormatter(req.query.phoneNumber, 'en'); + var code = Math.floor(Math.random() * 10000); + var data = { + pattern_code: process.env.SMS_API_PHONE_PATTERN_CODE, + originator: process.env.SMS_API_DEFINITE_SENDER_NUMBER, + recipient: phoneNumber.toString(), + values: { "verification-code": code.toString() } + }; + var body = { + phoneNumber: phoneNumber, + sessionId: req.cookies.sessionId, + code: code + }; + var verificationPhoneCode = new user_1.VerificationPhoneCode(__assign({}, body)); + verificationPhoneCode.save() + .then(function () { + if (userId) { + user_1.User.findOne({ _id: userId }) + .then(function (user) { + if (user && user._id.toString() === userId) { + user['tempPhoneNumber'] = verificationPhoneCode._id; + user.save() + .then(function () { + fetch('http://rest.ippanel.com/v1/messages/patterns/send', { + method: 'POST', + body: JSON.stringify(data), + headers: { + 'Authorization': process.env.SMS_API_ACCESS_KEY, + 'Content-Type': 'application/json', + 'Accept': '*/*', + 'Connection': 'Keep-Alive' + } + })["catch"](function (err) { + var error = new myError_1["default"]('The Sms service is not responding!', 400, 11, 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', 'خطا رخ داد'); + throw (error); + }) + .then(function (res) { return res.json(); }) + .then(function (response) { + if (response.status === 'OK') { + response_1["default"](res, ''); + } + else { + var error = new myError_1["default"]('The Sms service is not responding!', 400, 11, 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + } + else { + } + })["catch"](function (err) { + next(err); + }); + } + else { + fetch('http://rest.ippanel.com/v1/messages/patterns/send', { + method: 'POST', + body: JSON.stringify(data), + headers: { + 'Authorization': process.env.SMS_API_ACCESS_KEY, + 'Content-Type': 'application/json', + 'Accept': '*/*', + 'Connection': 'Keep-Alive' + } + })["catch"](function (err) { + var error = new myError_1["default"]('The Sms service is not responding!', 400, 11, 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', 'خطا رخ داد'); + throw (error); + }) + .then(function (res) { return res.json(); }) + .then(function (response) { + if (response.status === 'OK') { + response_1["default"](res, ''); + } + else { + var error = new myError_1["default"]('The Sms service is not responding!', 400, 11, 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.authRoutes.get('/verifyPhoneCode', preventBruteForce_1.rateLimiterMiddleware, tryCtach_1["default"](function (req, res, next) { + var phoneCode = req.query.phoneCode; + var userId = req.session.userId; + var sessionId = req.cookies.sessionId; + user_1.VerificationPhoneCode.findOne({ $and: [{ sessionId: sessionId }, { code: phoneCode }] }) + .then(function (item) { + if (item && item.sessionId === sessionId) { + if (item.code === phoneCode) { + var query = void 0; + if (userId) { + query = { tempPhoneNumber: item._id }; + } + else { + query = { 'phoneNumber.number': item.phoneNumber }; + } + user_1.User.findOne(query) + .then(function (user) { + if (user) { + user.phoneNumber.number = item.phoneNumber; + user.phoneNumber.validated = true; + user['tempPhoneNumber'] = undefined; + user.save() + .then(function () { + item.remove()["catch"](function (err) { + logger_1.logger.error(err); + }); + response_1["default"](res, '', item.phoneNumber); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('The code is not valid!', 400, 11, 'کد وارد شده معتبر نیست!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('The code is not valid!', 400, 11, 'کد وارد شده معتبر نیست!', 'خطا رخ داد'); + next(error); + } + } + else { + var error = new myError_1["default"]('The code is not valid!', 400, 11, 'کد وارد شده معتبر نیست!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// POST ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +// This end point get the users' information and save those in MongoDB. +exports.authRoutes.post('/register', +//rateLimiterMiddleware, +validation_1.userValidationRules('body', 'name'), validation_1.userValidationRules('body', 'lastName'), validation_1.userValidationRules('body', 'username'), validation_1.userValidationRules('body', 'password'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var username = req.body.username; + var rand; + var mailOptions; + var dataSms; + var code; + var isEmail = false; + var isPhoneNumber = false; + var setNewTempPhone = function () { + return null; + }; + var setEmailVeificationCode = function () { + return null; + }; + if (validation_1.isEmailValid(username)) { + isEmail = true; + } + else if (validation_1.isValidMobilePhone(username)) { + isPhoneNumber = true; + } + if (isPhoneNumber) { + code = Math.floor(Math.random() * 10000); + dataSms = { + pattern_code: process.env.SMS_API_PHONE_PATTERN_CODE, + originator: process.env.SMS_API_DEFINITE_SENDER_NUMBER, + recipient: username.toString(), + values: { "verification-code": code.toString() } + }; + } + if (isEmail) { + //const rand = process.env.NODE_ENV === 'test' ? 'cb0059c2-5566-4967-8c9d-1126d1e9eda4' : uuid4() + rand = uuid4(); + var link = process.env.API + "/verify?type=email&string=" + rand; + mailOptions = { + from: process.env.SENDER_ADDRESS, + to: username, + subject: 'Please confirm your Email account', + html: 'Hello,
Please Click on the link to verify your email.
Click here to verify' + }; + } + var body; + var user; + var verificationPhoneCode; + if (isEmail) { + setEmailVeificationCode = function () { + var bodyEmailCode = { + name: rand + }; + var newEmailCode = new user_1.VerificationCode(__assign({}, bodyEmailCode)); + return newEmailCode.save() + .then(function () { + body = { + name: req.body.name, + lastName: req.body.lastName, + email: { address: username }, + password: req.body.password, + label: ['USER'], + emailVerificationString: newEmailCode._id + }; + user = new user_1.User(__assign({}, body)); + })["catch"](function (err) { + throw err; + }); + }; + } + else if (isPhoneNumber) { + setNewTempPhone = function () { + var bodyPhoneCode = { + phoneNumber: validation_1.numbersFormatter(username, 'en'), + sessionId: req.cookies.sessionId, + code: code + }; + verificationPhoneCode = new user_1.VerificationPhoneCode(__assign({}, bodyPhoneCode)); + return verificationPhoneCode.save() + .then(function () { + body = { + name: req.body.name, + lastName: req.body.lastName, + phoneNumber: { + number: validation_1.numbersFormatter(username, 'en'), + validated: false + }, + password: req.body.password, + label: ['USER'] + }; + user = new user_1.User(__assign({}, body)); + })["catch"](function (err) { + if (err.name = 'MongoError' && err.code === 11000) { + logger_1.logger.error("The save action on Verification Collection with document " + bodyPhoneCode + " has some errors: " + err); + var error = new myError_1["default"]('!', 400, 9, 'لطفا چند دقیقه بعد از درخواست قبلی صبر نمیایید!', 'خطا رخ داد '); + throw (error); + } + else + throw (err); + }); + }; + } + Promise.all([setNewTempPhone(), setEmailVeificationCode()]) + .then(function () { + user.save() + .then(function (usr) { + var data = { + email: user.email.address, + tempPhoneNumber: verificationPhoneCode ? verificationPhoneCode._id : undefined, + isActive: user.isActive + }; + if (isEmail) { + var body1 = { + aUsername: username, + aPass: req.body.password, + aPassConfirm: req.body.password, + aFullname: req.body.name + req.body.lastName, + aTitle: username, + userId: usr._id, + aGrps: ["5fb38b5de54aaa00062de4cb"], + aEmail: username + }; + var body1Json = JSON.stringify(body1); + console.log(body1Json); + fetch("http://localhost:3001/tickets/register", { + method: 'POST', + body: body1Json, + headers: { + accessToken: process.env.ACCESS_TOKEN, + 'Content-Type': 'application/json' + } + }) + .then(function (res) { return res.json(); }) + .then(function (response) { console.log('response: ', response); })["catch"](function (err) { console.log('err: ', err); }); + response_1["default"](res, 'Registration is done successfully', data, { isEmail: isEmail }); + amqp_1.publishQueueConnection(mailOptions); + } + else if (isPhoneNumber) { + var body1 = { + aUsername: username, + aPass: req.body.password, + aPassConfirm: req.body.password, + aFullname: req.body.name + req.body.lastName, + aTitle: username, + //aGrps: [group._id.toString()], + userId: usr._id, + aEmail: username.concat("@gmail.com") + }; + var body1Json = JSON.stringify(body1); + fetch("http://localhost:3001/tickets/register", { + method: 'POST', + body: body1Json, + headers: { + accessToken: process.env.ACCESS_TOKEN, + 'Content-Type': 'application/json' + } + }) + .then(function (res) { return res.json(); }) + .then(function (response) { }); + response_1["default"](res, 'Registration is done successfully', data, { isPhoneNumber: isPhoneNumber }); + fetch('http://rest.ippanel.com/v1/messages/patterns/send', { + method: 'POST', + body: JSON.stringify(dataSms), + headers: { + 'Authorization': process.env.SMS_API_ACCESS_KEY, + 'Content-Type': 'application/json', + 'Accept': '*/*', + 'Connection': 'Keep-Alive' + } + })["catch"](function (err) { + var error = new myError_1["default"]('The Sms service is not responding!', 400, 11, 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', 'خطا رخ داد'); + logger_1.logger.error(error.message); + }) + .then(function (res) { return res.json(); }) // expecting a json response + .then(function (response) { + if (response.status !== 'OK') { + var error = new myError_1["default"]('The Sms service is not responding!', 400, 11, 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', 'خطا رخ داد'); + logger_1.logger.error(error.message); + } + })["catch"](function (err) { + logger_1.logger.error(err); + }); + } + })["catch"](function (err) { + if (err.name = 'MongoError' && err.code === 11000) { + logger_1.logger.error("The save action on User Collection with document " + req.body.lastName + " has some errors: " + err); + var error = new myError_1["default"]('The user has registered already!', 400, 9, 'شما قبلا ثبت نام کرده اید!', 'خطا رخ داد '); + next(error); + } + else { + next(err); + } + }); + })["catch"](function (err) { + next(err); + }); +})); +exports.authRoutes.post('/sendEmailVerificationLink', preventBruteForce_1.rateLimiterMiddleware, validation_1.userValidationRules('body', 'email'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var email = req.body.email; + user_1.User.findOne({ email: email }) + .then(function (user) { + if (!user) { + var error = new myError_1["default"]("Email address " + email + " is not valid!", 400, 12, 'آدرس ایمیل معتبر نیست!', 'خطا رخ داد'); + next(error); + } + else { + // const rand = uuid4() + var rand = process.env.NODE_ENV === 'test' ? 'cb0059c2-5566-4967-8c9d-1126d1e9eda5' : uuid4(); + var link = process.env.API + "/verify?type=email&string=" + rand; + var mailOptions_1 = { + from: process.env.SENDER_ADDRESS, + to: email, + subject: 'Please confirm your Email account', + html: 'Hello,
Please Click on the link to verify your email.
Click here to verify' + }; + var bodyEmailCode = { + name: rand + }; + var newEmailCode_1 = new user_1.VerificationCode(__assign({}, bodyEmailCode)); + newEmailCode_1.save() + .then(function () { + user.updateOne({ $set: { emailVerificationString: newEmailCode_1._id } }) + .then(function () { + var data = { + email: email + }; + response_1["default"](res, 'Please verify your email', data); + amqp_1.publishQueueConnection(mailOptions_1); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.authRoutes.post('/sendPasswordVerificationLink', preventBruteForce_1.rateLimiterMiddleware, validation_1.userValidationRules('body', 'email'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var email = req.body.email; + user_1.User.findOne({ email: email }) + .then(function (user) { + if (!user) { + var error = new myError_1["default"]('Email address is not valid!', 400, 12, 'آدرس ایمیل معتبر نیست!', 'خطا رخ داد'); + next(error); + } + else { + var rand = process.env.NODE_ENV === 'test' ? 'e39459ee-18b4-4967-aaaa-f22fb26a8beb' : uuid4(); + // const rand = uuid4() + var link = process.env.API + "/verify?type=password&string=" + rand; + var mailOptions_2 = { + from: process.env.SENDER_ADDRESS, + to: email, + subject: 'Please confirm your Email account', + html: 'Hello,
Please Click on the link to verify your email.
Click here to verify' + }; + var hash = crypto.createHmac('sha256', process.env.CRYPTO_SECRET) + .update(rand) + .digest('hex'); + var verificationCode_1 = new user_1.VerificationCode({ code: hash }); + verificationCode_1.save() + .then(function () { + user.updateOne({ $set: { resetPasswordVerificationString: mongoose.Types.ObjectId(verificationCode_1._id) } }) + .then(function () { + response_1["default"](res, 'Please verify your email'); + amqp_1.publishQueueConnection(mailOptions_2); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + logger_1.logger.error("The find action on User Collection with email " + email + " has some errors: " + err); + next(err); + }); +})); +exports.authRoutes.post('/resetPassword', preventBruteForce_1.rateLimiterMiddleware, validation_1.userValidationRules('body', 'id'), validation_1.userValidationRules('body', 'password'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var id = req.body.id; + var hash = crypto.createHmac('sha256', process.env.CRYPTO_SECRET) + .update(id) + .digest('hex'); + user_1.VerificationCode.findOne({ code: hash }) + .then(function (doc) { + if (!doc) { + logger_1.logger.warn("ResetPasswordVerificationString " + hash + " is not valid!"); + var error = new myError_1["default"]('Verification Code is not valid!', 400, 5, 'کد راستی آزمایی معتبر نیست!', 'خطا رخ داد'); + next(error); + } + else { + user_1.User.findOne({ resetPasswordVerificationString: doc._id }) + .then(function (user) { + if (!user) { + logger_1.logger.error("The query on User Collection with resetPasswordVerificationString " + id + " has response null!"); + var error = new myError_1["default"]('Verification Code is not valid!', 400, 5, 'کد راستی آزمایی معتبر نیست!', 'خطا رخ داد'); + next(error); + } + else { + user.password = req.body.password; + user.resetPasswordVerificationString = undefined; + user_1.VerificationCode.deleteOne({ code: hash })["catch"](function (err) { + logger_1.logger.error(err); + }); + user.save() + .then(function () { + var data = { + email: user.email.address + }; + response_1["default"](res, 'password is successfuly reset', data); + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.authRoutes.post('/resetPasswordWithPhone', preventBruteForce_1.rateLimiterMiddleware, validation_1.userValidationRules('body', 'password'), validation_1.userValidationRules('body', 'passwordConfirm'), +// userValidationRules('body', 'verificationCode'), +validation_1.validate, tryCtach_1["default"](function (req, res, next) { + console.log(req.body); + var password = req.body.password; + var passwordConfirm = req.body.passwordConfirm; + var verificationCode = req.body.verificationCode; + var sessionId = req.cookies.sessionId; + if (password !== passwordConfirm) { + var error = new myError_1["default"]('passwords do not match!', 400, 11, 'پسورد ها باهم همخوانی ندارند', 'خطا رخ داد'); + next(error); + } + else { + user_1.VerificationPhoneCode.findOne({ $and: [{ code: verificationCode }, { sessionId: sessionId }] }) + .then(function (item) { + if (item && item.code.toString() === verificationCode.toString() && item.sessionId.toString() === sessionId.toString()) { + user_1.User.findOne({ 'phoneNumber.number': item.phoneNumber }) + .then(function (user) { + if (user && user.phoneNumber && user.phoneNumber.number === item.phoneNumber) { + if (user.phoneNumber.validated === true) { + user.password = password; + user.save() + .then(function () { + item.remove() + .then(function () { + response_1["default"](res, '', user.phoneNumber.number); + })["catch"](function (err) { next(err); }); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('The phoneNumber is not validated!', 400, 18, 'شماره مورد نظر هنوز راستی آزمایی نشده است!', 'خطا رخ داد'); + next(error); + } + } + else { + var error = new myError_1["default"]('The code is not valid!', 400, 11, 'کد معتبر نیست', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('The code is not valid!', 400, 11, 'کد معتبر نیست', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } +})); +exports.authRoutes.post('/changePassword', preventBruteForce_1.rateLimiterMiddleware, auth_1.isAuthorized, validation_1.userValidationRules('body', 'password'), validation_1.validate, validation_1.userValidationRules('body', 'newPassword'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + user_1.User.findOne({ email: req.session.email }) + .then(function (user) { + if (!user) { + logger_1.logger.warn('Email address is not valid!'); + var error = new myError_1["default"]('Email address is not valid!', 12, 400, 'آدرس ایمیل معتبر نیست!', 'خطا رخ داد'); + next(error); + } + else { + user.comparePasswordPromise(req.body.password) + .then(function (isMatch) { + if (!isMatch) { + logger_1.logger.warn('Password is not valid!'); + var error = new myError_1["default"]('Inputs are not valid!', 400, 15, 'ورودی های درخواستی معتبر نیستند!', 'خطا رخ داد'); + next(error); + } + else { + user.password = req.body.newPassword; + user.save() + .then(function () { + response_1["default"](res, 'password is successfuly changed'); + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); +})); +// This end point execute the following actions: +// 1. Find the document of a user who send the email.doc +// 2. Compare the Passord to hash of the password which is stored in MongoDB. +// 3. Generate a token and save it in MongoDB. +// 4. Send the tocken as a cookie to client. +exports.authRoutes.post('/login', +//rateLimiterMiddleware, +//preventBruteForce, +validation_1.userValidationRules('body', 'username'), validation_1.userValidationRules('body', 'password'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var agent = req.useragent; + var username = req.body.username; + var isEmail = false; + var isPhoneNumber = false; + var query; + if (validation_1.isEmailValid(username)) { + isEmail = true; + query = { 'email.address': username }; + } + else if (validation_1.isValidMobilePhone(username)) { + isPhoneNumber = true; + query = { 'phoneNumber.number': username }; + } + user_1.User.findOne(query) + .then(function (user) { + if (!user) { + var error = new myError_1["default"]('Email or Password are not valid!', 400, 8, 'نام کاربری یا گذرواژه معتبر نیستند!', 'خطا رخ داد'); + next(error); + } + else if (user && isEmail && user.email.validated !== true) { + var error = new myError_1["default"]('The email is not verified!', 400, 17, 'آدرس ایمیل شما هنوز راستی آزمایی نشده است!', 'خطا رخ داد'); + next(error); + } + else if (user && isPhoneNumber && user.phoneNumber.number && user.phoneNumber.validated !== true) { + var error = new myError_1["default"]('The mobile phone is not verified!', 400, 18, 'شماره موبایل شما هنوز راستی آزمایی نشده است!', 'خطا رخ داد'); + next(error); + } + else if (user && user.isActive !== true) { + var error = new myError_1["default"]('The account is not active!', 400, 18, 'حساب کاربری شما غیرفعال شده است!', 'خطا رخ داد'); + next(error); + } + else { + user.comparePasswordPromise(req.body.password) + .then(function (isMatch) { + if (!isMatch) { + logger_1.logger.info('Passwords are not match'); + var error = new myError_1["default"]('Username or Password are not valid!', 400, 8, 'نام کاربری یا گذرواژه معتبر نیستند!', 'خطا رخ داد'); + next(error); + } + else { + var userActivity = { + action: 'LOGIN', + timestamp: Date.now(), + device: agent.source, + ip: req.ip + }; + user.userActivities.push(userActivity); + user.save() + .then(function () { + req.session.userId = user._id; + var profile = { + name: user.name, + lastName: user.lastName, + userId: user._id, + userType: user.userType + }; + response_1["default"](res, '', profile); + })["catch"](function (err) { + logger_1.logger.error("Adding activity has some errors: " + err); + var error = new myError_1["default"]('Error happened during the login!', 500, 16, 'در ورود شما مشکلی پیش آمده است!', 'خطا در سرور'); + next(error); + }); + } + })["catch"](function (err) { + logger_1.logger.error("comparePassword method has some errors: " + err); + var error = new myError_1["default"]('Error happened during the login!', 500, 16, 'در ورود شما مشکلی پیش آمده است!', 'خطا در سرور'); + next(error); + }); + } + })["catch"](function (err) { + logger_1.logger.error("The find action on User Collection with email " + req.body.email + " has some errors: " + err); + var error = new myError_1["default"]('Error happened during the login!', 500, 16, 'در ورود شما مشکلی پیش آمده است!', 'خطا در سرور'); + next(error); + }); +})); diff --git a/server/routes/auth.ts b/server/routes/auth.ts new file mode 100755 index 0000000..656b05a --- /dev/null +++ b/server/routes/auth.ts @@ -0,0 +1,997 @@ +import * as express from 'express'; +export const authRoutes = express.Router() +import * as uuid4 from 'uuid4' +import * as crypto from 'crypto' +import * as mongoose from 'mongoose' +import { logger } from '../api/logger' +import { publishQueueConnection } from '../api/amqp' +import myError from '../api/myError' + +import { User, VerificationCode, VerificationPhoneCode } from '../db/user' + +import { userValidationRules, validate, isEmailValid, isValidMobilePhone, numbersFormatter } from '../middlewares/validation' +import successRes from '../middlewares/response' +import tryCatch from '../middlewares/tryCtach' +import { isAuthorized } from '../middlewares/auth' +import * as fetch from 'node-fetch' + +import { preventBruteForce, rateLimiterMiddleware } from '../middlewares/preventBruteForce' + +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// GET ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// + +// This end point check "Authentication" of users from MongoDB. +authRoutes.get('/auth', +rateLimiterMiddleware, +tryCatch((req, res, next) => { + if (!req.session.userId) { + logger.error('Unauthorized cookie') + const error = new myError( + 'Unauthorized cookie', + 400, + 1, + 'کاربر حق دسترسی ندارد!', + 'خطا رخ داد' + ) + next(error) + } else { + successRes(res, '', { isAuth: true }) + } +})) + +// This end point delete "Token" of users who want to logout from MongoDB. +authRoutes.get('/logout', +rateLimiterMiddleware, +isAuthorized, +tryCatch((req, res, next) => { + const agant = req.useragent + const userActivity = { + action: 'LOGOUT', + timestamp: Date.now(), + device: agant.source, + ip: req.ip + } + User.findOneAndUpdate({ _id: req.session.userId }, { $push: { userActivities: userActivity } }) + .catch((err) => { + logger.error(`Updating user activity has some error: ${err} `) + }) + req.session.destroy() + successRes(res) +})) + +authRoutes.get('/verifyEmails', +rateLimiterMiddleware, +userValidationRules('query', 'string'), +validate, +tryCatch((req, res, next) => { + const id = req.query.string + VerificationCode.findOne({ name: id }) + .then((doc) => { + if (!doc) { + const error = new myError( + 'Verification Code is not valid!', + 400, + 5, + 'کد راستی آزمایی معتبر نیست!', + 'خطا رخ داد' + ) + next(error) + } else { + User.findOne({ emailVerificationString: doc._id }) + .then((user) => { + if (user && user.emailVerificationString.toString() === doc._id.toString()) { + user.email.validated = true + user.emailVerificationString = undefined + user.email.address = doc.email + user.save() + .then(() => { + const data = { + email: user.email.address + } + doc.remove().catch((err)=>{ + logger.error(err) + }) + successRes(res, 'Email is verified', data) + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'Verification Code is not valid!', + 400, + 5, + 'کد راستی آزمایی معتبر نیست!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + logger.error(`The query on User Collection with emailVerificationString ${id} has some errors: ${err}`) + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) +})) + +authRoutes.get('/requestForPhoneCode', +rateLimiterMiddleware, +userValidationRules('query', 'phoneNumber'), +validate, +tryCatch((req, res, next) => { + const userId = req.session.userId + const phoneNumber = numbersFormatter(req.query.phoneNumber, 'en') + const code = Math.floor(Math.random() * 10000) + const data = { + pattern_code : process.env.SMS_API_PHONE_PATTERN_CODE, + originator: process.env.SMS_API_DEFINITE_SENDER_NUMBER, + recipient: phoneNumber.toString(), + values:{ "verification-code" : code.toString()} + } + const body = { + phoneNumber, + sessionId: req.cookies.sessionId, + code + } + const verificationPhoneCode = new VerificationPhoneCode({ ...body }) + verificationPhoneCode.save() + .then(() => { + if (userId) { + User.findOne({ _id: userId }) + .then((user) => { + if (user && user._id.toString() === userId) { + user['tempPhoneNumber'] = verificationPhoneCode._id + user.save() + .then(() => { + fetch('http://rest.ippanel.com/v1/messages/patterns/send', { + method: 'POST', + body : JSON.stringify(data), + headers: { + 'Authorization' : process.env.SMS_API_ACCESS_KEY, + 'Content-Type': 'application/json', + 'Accept' : '*/*', + 'Connection' : 'Keep-Alive' + } + }) + .catch((err) => { + const error = new myError( + 'The Sms service is not responding!', + 400, + 11, + 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', + 'خطا رخ داد' + ) + throw(error) + }) + .then(res => res.json()) + .then((response) => { + if (response.status === 'OK') { + successRes(res, '') + } else { + const error = new myError( + 'The Sms service is not responding!', + 400, + 11, + 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) + } else { + + } + }) + .catch((err) => { + next(err) + }) + } else { + fetch('http://rest.ippanel.com/v1/messages/patterns/send', { + method: 'POST', + body : JSON.stringify(data), + headers: { + 'Authorization' : process.env.SMS_API_ACCESS_KEY, + 'Content-Type': 'application/json', + 'Accept' : '*/*', + 'Connection' : 'Keep-Alive' + } + }) + .catch((err) => { + const error = new myError( + 'The Sms service is not responding!', + 400, + 11, + 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', + 'خطا رخ داد' + ) + throw(error) + }) + .then(res => res.json()) + .then((response) => { + if (response.status === 'OK') { + successRes(res, '') + } else { + const error = new myError( + 'The Sms service is not responding!', + 400, + 11, + 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) +})) + +authRoutes.get('/verifyPhoneCode', +rateLimiterMiddleware, +tryCatch((req, res, next) => { + const phoneCode = req.query.phoneCode + const userId = req.session.userId + const sessionId = req.cookies.sessionId + VerificationPhoneCode.findOne({ $and: [ { sessionId: sessionId }, { code: phoneCode } ] }) + .then((item) => { + if (item && item.sessionId === sessionId) { + if(item.code === phoneCode) { + let query + if (userId) { + query = { tempPhoneNumber: item._id } + } else { + query = { 'phoneNumber.number': item.phoneNumber } + } + User.findOne(query) + .then((user) => { + if (user) { + user.phoneNumber.number = item.phoneNumber + user.phoneNumber.validated = true + user['tempPhoneNumber'] = undefined + user.save() + .then(() => { + item.remove() + .catch((err) => { + logger.error(err) + }) + successRes(res, '', item.phoneNumber) + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'The code is not valid!', + 400, + 11, + 'کد وارد شده معتبر نیست!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'The code is not valid!', + 400, + 11, + 'کد وارد شده معتبر نیست!', + 'خطا رخ داد' + ) + next(error) + } + } else { + const error = new myError( + 'The code is not valid!', + 400, + 11, + 'کد وارد شده معتبر نیست!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) +})) +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// POST ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// + +// This end point get the users' information and save those in MongoDB. +authRoutes.post('/register', + //rateLimiterMiddleware, + userValidationRules('body', 'name'), + userValidationRules('body', 'lastName'), + userValidationRules('body', 'username'), + userValidationRules('body', 'password'), + validate, + tryCatch((req, res, next) => { + const username = req.body.username + let rand + let mailOptions + let dataSms + let code + let isEmail = false + let isPhoneNumber = false + let setNewTempPhone = () => { + return null + } + let setEmailVeificationCode = () => { + return null + } + if (isEmailValid(username)) { + isEmail = true + } else if (isValidMobilePhone(username)) { + isPhoneNumber = true + } + if (isPhoneNumber) { + code = Math.floor(Math.random() * 10000) + dataSms = { + pattern_code : process.env.SMS_API_PHONE_PATTERN_CODE, + originator: process.env.SMS_API_DEFINITE_SENDER_NUMBER, + recipient: username.toString(), + values:{ "verification-code" : code.toString()} + } + } + if (isEmail) { + //const rand = process.env.NODE_ENV === 'test' ? 'cb0059c2-5566-4967-8c9d-1126d1e9eda4' : uuid4() + rand = uuid4() + const link = `${process.env.API}/verify?type=email&string=${rand}` + mailOptions = { + from: process.env.SENDER_ADDRESS, // sender address + to: username, + subject: 'Please confirm your Email account', + html: 'Hello,
Please Click on the link to verify your email.
Click here to verify' + } + } + let body + let user + let verificationPhoneCode + if (isEmail) { + setEmailVeificationCode = () => { + const bodyEmailCode = { + name: rand + } + const newEmailCode = new VerificationCode({ ...bodyEmailCode }) + return newEmailCode.save() + .then(() => { + body = { + name: req.body.name, + lastName: req.body.lastName, + email: { address : username}, + password: req.body.password, + label: ['USER'], + emailVerificationString: newEmailCode._id + } + user = new User({ ...body }) + }) + .catch((err) => { + throw err + }) + } + } else if (isPhoneNumber) { + setNewTempPhone = () => { + const bodyPhoneCode = { + phoneNumber: numbersFormatter(username, 'en'), + sessionId: req.cookies.sessionId, + code + } + verificationPhoneCode = new VerificationPhoneCode({ ...bodyPhoneCode }) + return verificationPhoneCode.save() + .then(() => { + body = { + name: req.body.name, + lastName: req.body.lastName, + phoneNumber: { + number: numbersFormatter(username, 'en'), + validated: false + }, + password: req.body.password, + label: ['USER'] + } + user = new User({ ...body }) + }) + .catch((err) => { + if (err.name = 'MongoError' && err.code === 11000) { + logger.error(`The save action on Verification Collection with document ${bodyPhoneCode} has some errors: ${err}`) + const error = new myError( + '!', + 400, + 9, + 'لطفا چند دقیقه بعد از درخواست قبلی صبر نمیایید!', + 'خطا رخ داد ' + ) + throw (error) + } + else + throw (err) + }) + } + } + Promise.all([setNewTempPhone(), setEmailVeificationCode()]) + .then(() => { + user.save() + .then((usr) => { + const data = { + email: user.email.address, + tempPhoneNumber: verificationPhoneCode ? verificationPhoneCode._id : undefined, + isActive: user.isActive, + } + if (isEmail) { + const body1 = { + aUsername: username, + aPass: req.body.password, + aPassConfirm: req.body.password, + aFullname: req.body.name + req.body.lastName, + aTitle: username, + userId: usr._id, + aGrps: ["5fb38b5de54aaa00062de4cb"],//[group._id.toString()], + aEmail: username + } + const body1Json = JSON.stringify(body1) + console.log(body1Json) + fetch("http://localhost:3001/tickets/register", { + method: 'POST', + body: body1Json, + headers: { + accessToken: process.env.ACCESS_TOKEN, + 'Content-Type': 'application/json' + } + }) + .then((res) => res.json()) + .then((response) => { console.log('response: ', response) }) + .catch((err) => { console.log('err: ', err) }) + successRes(res, 'Registration is done successfully', data, { isEmail }) + publishQueueConnection(mailOptions) + } else if (isPhoneNumber) { + const body1 = { + aUsername: username, + aPass: req.body.password, + aPassConfirm: req.body.password, + aFullname: req.body.name + req.body.lastName, + aTitle: username, + + //aGrps: [group._id.toString()], + userId: usr._id, + aEmail: username.concat("@gmail.com") + } + const body1Json = JSON.stringify(body1) + fetch("http://localhost:3001/tickets/register", { + method: 'POST', + body: body1Json, + headers: { + accessToken: process.env.ACCESS_TOKEN, + 'Content-Type': 'application/json' + } + }) + .then((res) => res.json()) + .then((response) => {}) + + successRes(res, 'Registration is done successfully', data, { isPhoneNumber }) + fetch('http://rest.ippanel.com/v1/messages/patterns/send', + { + method: 'POST', + body: JSON.stringify(dataSms), + headers: { + 'Authorization' : process.env.SMS_API_ACCESS_KEY, + 'Content-Type': 'application/json', + 'Accept' : '*/*', + 'Connection' : 'Keep-Alive' + } + }) + .catch((err) => { + const error = new myError( + 'The Sms service is not responding!', + 400, + 11, + 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', + 'خطا رخ داد' + ) + logger.error(error.message); + + }) + .then(res => res.json()) // expecting a json response + .then((response) => { + if (response.status !== 'OK') { + const error = new myError( + 'The Sms service is not responding!', + 400, + 11, + 'سرویس ارسال پیامک دچار مشکل شده است. لطفا لحظاتی بعد دوباره اقدام فرمایید.', + 'خطا رخ داد' + ) + logger.error(error.message) + } + }) + .catch((err) => { + logger.error(err) + }) + } + }) + .catch((err) => { + if (err.name = 'MongoError' && err.code === 11000) { + logger.error(`The save action on User Collection with document ${req.body.lastName} has some errors: ${err}`) + const error = new myError( + 'The user has registered already!', + 400, + 9, + 'شما قبلا ثبت نام کرده اید!', + 'خطا رخ داد ' + ) + next(error) + } else { + next(err) + } + }) + }) + .catch((err) => { + next(err) + }) + })) + +authRoutes.post('/sendEmailVerificationLink', +rateLimiterMiddleware, +userValidationRules('body', 'email'), +validate, +tryCatch((req, res, next) => { + const email = req.body.email + User.findOne({ email: email }) + .then((user) => { + if (!user) { + const error = new myError( + `Email address ${email} is not valid!`, + 400, + 12, + 'آدرس ایمیل معتبر نیست!', + 'خطا رخ داد' + ) + next(error) + } else { + // const rand = uuid4() + const rand = process.env.NODE_ENV === 'test' ? 'cb0059c2-5566-4967-8c9d-1126d1e9eda5' : uuid4() + const link = `${process.env.API}/verify?type=email&string=${rand}` + const mailOptions = { + from: process.env.SENDER_ADDRESS, // sender address + to: email, + subject: 'Please confirm your Email account', + html: 'Hello,
Please Click on the link to verify your email.
Click here to verify' + } + const bodyEmailCode = { + name: rand + } + const newEmailCode = new VerificationCode({ ...bodyEmailCode }) + newEmailCode.save() + .then(() => { + user.updateOne({ $set: { emailVerificationString: newEmailCode._id } }) + .then(() => { + const data = { + email: email + } + successRes(res, 'Please verify your email', data) + publishQueueConnection(mailOptions) + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) +})) + +authRoutes.post('/sendPasswordVerificationLink', +rateLimiterMiddleware, +userValidationRules('body', 'email'), +validate, +tryCatch((req, res, next) => { + const email = req.body.email + User.findOne({ email: email }) + .then((user) => { + if (!user) { + const error = new myError( + 'Email address is not valid!', + 400, + 12, + 'آدرس ایمیل معتبر نیست!', + 'خطا رخ داد' + ) + next(error) + } else { + const rand = process.env.NODE_ENV === 'test' ? 'e39459ee-18b4-4967-aaaa-f22fb26a8beb' : uuid4() + // const rand = uuid4() + const link = `${process.env.API}/verify?type=password&string=${rand}` + const mailOptions = { + from: process.env.SENDER_ADDRESS, // sender address + to: email, + subject: 'Please confirm your Email account', + html: 'Hello,
Please Click on the link to verify your email.
Click here to verify' + } + const hash = crypto.createHmac('sha256', process.env.CRYPTO_SECRET) + .update(rand) + .digest('hex') + const verificationCode = new VerificationCode({ code: hash }) + verificationCode.save() + .then(() => { + user.updateOne({ $set: { resetPasswordVerificationString: mongoose.Types.ObjectId(verificationCode._id) } }) + .then(() => { + successRes(res, 'Please verify your email') + publishQueueConnection(mailOptions) + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + logger.error(`The find action on User Collection with email ${email} has some errors: ${err}`) + next(err) + }) +})) + +authRoutes.post('/resetPassword', +rateLimiterMiddleware, + userValidationRules('body', 'id'), + userValidationRules('body', 'password'), + validate, + tryCatch((req, res, next) => { + const id = req.body.id + const hash = crypto.createHmac('sha256', process.env.CRYPTO_SECRET) + .update(id) + .digest('hex') + VerificationCode.findOne({ code: hash }) + .then((doc) => { + if (!doc) { + logger.warn(`ResetPasswordVerificationString ${hash} is not valid!`) + const error = new myError( + 'Verification Code is not valid!', + 400, + 5, + 'کد راستی آزمایی معتبر نیست!', + 'خطا رخ داد' + ) + next(error) + } else { + User.findOne({ resetPasswordVerificationString: doc._id }) + .then((user) => { + if (!user) { + logger.error(`The query on User Collection with resetPasswordVerificationString ${id} has response null!`) + const error = new myError( + 'Verification Code is not valid!', 400, + 5, + 'کد راستی آزمایی معتبر نیست!', + 'خطا رخ داد' + ) + next(error) + } else { + user.password = req.body.password + user.resetPasswordVerificationString = undefined + VerificationCode.deleteOne({ code: hash }) + .catch((err) => { + logger.error(err) + }) + user.save() + .then(() => { + const data = { + email: user.email.address + } + successRes(res, 'password is successfuly reset', data) + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) + })) + +authRoutes.post('/resetPasswordWithPhone', +rateLimiterMiddleware, +userValidationRules('body', 'password'), +userValidationRules('body', 'passwordConfirm'), +// userValidationRules('body', 'verificationCode'), +validate, +tryCatch((req, res, next) => { + console.log(req.body) + const password = req.body.password + const passwordConfirm = req.body.passwordConfirm + const verificationCode = req.body.verificationCode + const sessionId = req.cookies.sessionId + if (password !== passwordConfirm) { + const error = new myError( + 'passwords do not match!', + 400, + 11, + 'پسورد ها باهم همخوانی ندارند', + 'خطا رخ داد' + ) + next(error) + } else { + VerificationPhoneCode.findOne({ $and: [ { code: verificationCode }, { sessionId: sessionId } ] }) + .then((item) => { + if (item && item.code.toString() === verificationCode.toString() && item.sessionId.toString()=== sessionId.toString()) { + User.findOne({ 'phoneNumber.number': item.phoneNumber }) + .then((user) => { + if (user && user.phoneNumber && user.phoneNumber.number === item.phoneNumber) { + if (user.phoneNumber.validated === true) { + user.password = password + user.save() + .then(() => { + item.remove() + .then(() => { + successRes(res, '', user.phoneNumber.number) + }).catch((err)=>{ next(err)}) + + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'The phoneNumber is not validated!', + 400, + 18, + 'شماره مورد نظر هنوز راستی آزمایی نشده است!', + 'خطا رخ داد' + ) + next(error) + } + } else { + const error = new myError( + 'The code is not valid!', + 400, + 11, + 'کد معتبر نیست', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'The code is not valid!', + 400, + 11, + 'کد معتبر نیست', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) +} +})) + +authRoutes.post('/changePassword', +rateLimiterMiddleware, + isAuthorized, + userValidationRules('body', 'password'), + validate, + userValidationRules('body', 'newPassword'), + validate, + tryCatch((req, res, next) => { + User.findOne({ email: req.session.email }) + .then((user) => { + if (!user) { + logger.warn('Email address is not valid!') + const error = new myError( + 'Email address is not valid!', + 12, + 400, + 'آدرس ایمیل معتبر نیست!', + 'خطا رخ داد' + ) + next(error) + } else { + user.comparePasswordPromise(req.body.password) + .then((isMatch) => { + if (!isMatch) { + logger.warn('Password is not valid!') + const error = new myError( + 'Inputs are not valid!', + 400, + 15, + 'ورودی های درخواستی معتبر نیستند!', + 'خطا رخ داد' + ) + next(error) + } else { + user.password = req.body.newPassword + user.save() + .then(() => { + successRes(res, 'password is successfuly changed') + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) + })) + +// This end point execute the following actions: +// 1. Find the document of a user who send the email.doc +// 2. Compare the Passord to hash of the password which is stored in MongoDB. +// 3. Generate a token and save it in MongoDB. +// 4. Send the tocken as a cookie to client. +authRoutes.post('/login', +//rateLimiterMiddleware, +//preventBruteForce, + userValidationRules('body', 'username'), + userValidationRules('body', 'password'), + validate, + tryCatch((req, res, next) => { + const agent = req.useragent + const username = req.body.username + let isEmail = false + let isPhoneNumber = false + let query + if (isEmailValid(username)) { + isEmail = true + query = { 'email.address' : username} + } else if (isValidMobilePhone(username)) { + isPhoneNumber = true + query = { 'phoneNumber.number': username } + } + User.findOne(query) + .then((user) => { + if (!user) { + const error = new myError( + 'Email or Password are not valid!', + 400, + 8, + 'نام کاربری یا گذرواژه معتبر نیستند!', + 'خطا رخ داد' + ) + next(error) + } else if (user && isEmail && user.email.validated !== true) { + const error = new myError( + 'The email is not verified!', + 400, + 17, + 'آدرس ایمیل شما هنوز راستی آزمایی نشده است!', + 'خطا رخ داد' + ) + next(error) + } else if (user && isPhoneNumber && user.phoneNumber.number && user.phoneNumber.validated !== true) { + const error = new myError( + 'The mobile phone is not verified!', + 400, + 18, + 'شماره موبایل شما هنوز راستی آزمایی نشده است!', + 'خطا رخ داد' + ) + next(error) + } else if (user && user.isActive !== true) { + const error = new myError( + 'The account is not active!', + 400, + 18, + 'حساب کاربری شما غیرفعال شده است!', + 'خطا رخ داد' + ) + next(error) + } else { + user.comparePasswordPromise(req.body.password) + .then((isMatch)=> { + if (!isMatch) { + logger.info('Passwords are not match') + const error = new myError( + 'Username or Password are not valid!', + 400, + 8, + 'نام کاربری یا گذرواژه معتبر نیستند!', + 'خطا رخ داد' + ) + next(error) + } else { + const userActivity = { + action: 'LOGIN', + timestamp: Date.now(), + device: agent.source, + ip: req.ip + } + user.userActivities.push(userActivity) + user.save() + .then(() => { + req.session.userId = user._id + const profile = { + name: user.name, + lastName: user.lastName, + userId: user._id, + userType: user.userType + } + successRes(res, '', profile) + }) + .catch((err) => { + logger.error(`Adding activity has some errors: ${err}`) + const error = new myError( + 'Error happened during the login!', + 500, + 16, + 'در ورود شما مشکلی پیش آمده است!', + 'خطا در سرور' + ) + next(error) + }) + } + }) + .catch((err) => { + logger.error(`comparePassword method has some errors: ${err}`) + const error = new myError( + 'Error happened during the login!', + 500, + 16, + 'در ورود شما مشکلی پیش آمده است!', + 'خطا در سرور' + ) + next(error) + }) + } + }) + .catch((err) => { + logger.error(`The find action on User Collection with email ${req.body.email} has some errors: ${err}`) + const error = new myError( + 'Error happened during the login!', + 500, + 16, + 'در ورود شما مشکلی پیش آمده است!', + 'خطا در سرور' + ) + next(error) + }) + })) + diff --git a/server/routes/service.js b/server/routes/service.js new file mode 100755 index 0000000..6a45c67 --- /dev/null +++ b/server/routes/service.js @@ -0,0 +1,638 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.serviceRoutes = void 0; +var express = require("express"); +var fetch = require("node-fetch"); +var fs = require("fs"); +var path = require("path"); +var _ = require("lodash"); +var mongodb_1 = require("mongodb"); +var query_1 = require("../api/query"); +var myError_1 = require("../api/myError"); +var redis = require("../api/redis"); +var acceptedOffers_1 = require("../db/acceptedOffers"); +var localHourly_1 = require("../db/localHourly"); +var validation_1 = require("../middlewares/validation"); +var tryCtach_1 = require("../middlewares/tryCtach"); +var response_1 = require("../middlewares/response"); +var ActiveOffers_1 = require("../db/ActiveOffers"); +var currencies_1 = require("../db/currencies"); +exports.serviceRoutes = express.Router(); +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// GET ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +exports.serviceRoutes.get('/getDeafultAcceptedOffers', tryCtach_1["default"](function (req, res, next) { + var curId = req.query.curIdOp; + var rialObj; + currencies_1.Currencies.findOne({ ab_name: 'IRR' }) + .then(function (rial) { + if (rial && rial.ab_name === 'IRR') { + rialObj = { + _id: rial._id, + currencyName: rial.currencyName, + per_name: rial.per_name, + ab_name: rial.ab_name, + icon: rial.icon + }; + } + else { + throw 'kl'; + } + var offersArray = []; + var query = {}; + if (mongodb_1.ObjectID.isValid(curId)) { + query = { $or: [ + { $and: [{ curGivenId: curId }, { curTakenId: rial._id }] }, + { $and: [{ curTakenId: curId }, { curGivenId: rial._id }] } + ] }; + } + else { + query = { $or: [{ curTakenId: rial._id }, { curGivenId: rial._id }] }; + } + acceptedOffers_1.Accepted_Offers.find(query) + .then(function (offers) { + var offersMap = offers.map(function (offer) { + if (offer.curTakenId.toString() === rial._id.toString()) { + return redis.hashGetAll(offer.curGivenId.toString()) + .then(function (curGivenObj) { + offersArray.push({ + GcurrencyName: curGivenObj.currencyName, + GpersianName: curGivenObj.per_name, + GshortName: curGivenObj.ab_name, + Gvalue: offer.curGivenVal, + Gicon: curGivenObj.icon, + acceptedDate: offer.created_at, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curTakenVal, + Ticon: rialObj.icon, + txType: 'sell' + }); + return offersArray; + })["catch"](function (err) { + console.log(err); + }); + } + else if (offer.curGivenId.toString() === rial._id.toString()) { + return redis.hashGetAll(offer.curTakenId.toString()) + .then(function (curTakenObj) { + offersArray.push({ + GcurrencyName: curTakenObj.currencyName, + GpersianName: curTakenObj.per_name, + GshortName: curTakenObj.ab_name, + Gvalue: offer.curTakenVal, + Gicon: curTakenObj.icon, + acceptedDate: offer.created_at, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curGivenVal, + Ticon: rialObj.icon, + txType: 'buy' + }); + return offersArray; + })["catch"](function (err) { + console.log(err); + }); + } + }); + Promise.all(offersMap) + .then(function () { + response_1["default"](res, '', offersArray); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); +})); +exports.serviceRoutes.get('/getAcceptedOffers', +// userValidationRules('query', 'status'), +// userValidationRules('query', 'rialId'), +// userValidationRules('query', 'currencyId'), +// validate, +tryCtach_1["default"](function (req, res, next) { + var status = req.query.status; + var currency = req.query.currencyId; + var rialId = req.query.rialId; + var query = []; + if (status === "sell") { + if (rialId) { + query.push({ curGivenId: currency }, { curTakenId: rialId }); + } + else { + query.push({ curGivenId: currency }); + } + } + else if (status === "buy") { + if (rialId) { + query.push({ curTakenId: currency }, { curGivenId: rialId }); + } + else { + query.push({ curTakenId: currency }); + } + } + acceptedOffers_1.Accepted_Offers.find({ $and: query }) + .then(function (offers) { + if (offers[0]) { + var dataArray_1 = []; + redis.hashGetAll(currency.toString()) + .then(function (cur) { + if (cur) { + var rialName_1; + var rialpesianName_1; + var rialShortName_1; + if (rialId) { + redis.hashGetAll(rialId.toString()) + .then(function (rial) { + if (rial) { + rialName_1 = rial.currencyName; + rialpesianName_1 = rial.per_name; + rialShortName_1 = rial.ab_name; + } + else { + var error = new myError_1["default"]('rial not found!', 400, 5, 'ریال پیدا نشد!', 'خطا رخ داد'); + throw (error); + } + })["catch"](function (err) { + throw (err); + }); + } + var offmap = offers.map(function (off) { + if (status === "sell") { + if (rialId) { + dataArray_1.push({ + GcurrencyName: cur.currencyName, + GpersianName: cur.per_name, + GshortName: cur.ab_name, + Gvalue: off.curTakenVal, + acceptedDate: off.created_at, + TcurrencyName: rialName_1, + TpersianName: rialpesianName_1, + TshortName: rialShortName_1, + Tvalue: off.curTakenVal + }); + } + else { + return redis.hashGetAll(off.curTakenId.toString()) + .then(function (curT) { + if (curT) { + dataArray_1.push({ + GcurrencyName: cur.currencyName, + GpersianName: cur.per_name, + GshortName: cur.ab_name, + Gvalue: off.curGivenVal, + acceptedDate: off.created_at, + TcurrencyName: curT.currencyName, + TpersianName: curT.per_name, + TshortName: curT.ab_name, + Tvalue: off.curTakenVal + }); + } + else { + return; + } + })["catch"](function (err) { + next(err); + }); + } + } + else if (status === "buy") { + if (rialId) { + dataArray_1.push({ + TcurrencyName: cur.currencyName, + TpersianName: cur.per_name, + TshortName: cur.ab_name, + Tvalue: off.curTakenVal, + acceptedDate: off.created_at, + GcurrencyName: rialName_1, + GpersianName: rialpesianName_1, + GshortName: rialShortName_1, + Gvalue: off.curGivenVal + }); + } + else { + return redis.hashGetAll(off.curGivenId.toString()) + .then(function (curG) { + if (curG) { + dataArray_1.push({ + TcurrencyName: cur.currencyName, + TpersianName: cur.per_name, + TshortName: cur.ab_name, + Tvalue: off.curTakenVal, + acceptedDate: off.created_at, + GcurrencyName: curG.currencyName, + GpersianName: curG.per_name, + GshortName: curG.ab_name, + Gvalue: off.curGivenVal + }); + } + else { + return; + } + })["catch"](function (err) { + next(err); + }); + } + } + }); + Promise.all(offmap) + .then(function () { + response_1["default"](res, "offer founded", dataArray_1); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('currency not found!', 400, 5, 'ارز مربوطه پیدا نشد!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('offer not found!', 400, 5, 'سفارش پیدا نشد!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.serviceRoutes.get('/getOnlinePrices', tryCtach_1["default"](function (req, res, next) { + var curArr = []; + var fetchBTC = function () { + return fetch("https://api.nomics.com/v1/exchange-rates/history?key=" + process.env.CURRENCY_API_KEY + "¤cy=BTC&start=2020-09-25T00%3A00%3A00Z", { + method: 'GET' + }) + .then(function (res) { return res.json(); }) + .then(function (response) { + curArr.push({ currency: 'BTC', prices: response }); + })["catch"](function (err) { + console.log(err); + }); + }; + var fetchETH = function () { + return fetch("https://api.nomics.com/v1/exchange-rates/history?key=" + process.env.CURRENCY_API_KEY + "¤cy=ETH&start=2020-09-25T00%3A00%3A00Z", { + method: 'GET' + }) + .then(function (res) { return res.json(); }) + .then(function (response) { + curArr.push({ currency: 'ETH', prices: response }); + })["catch"](function (err) { + console.log(err); + }); + }; + var fetchTRX = function () { + return fetch("https://api.nomics.com/v1/exchange-rates/history?key=" + process.env.CURRENCY_API_KEY + "¤cy=TRX&start=2020-09-25T00%3A00%3A00Z", { + method: 'GET' + }) + .then(function (res) { return res.json(); }) + .then(function (response) { + curArr.push({ currency: 'TRX', prices: response }); + })["catch"](function (err) { + console.log(err); + }); + }; + return Promise.all([fetchBTC(), fetchETH(), fetchTRX()]) + .then(function () { + response_1["default"](res, '', curArr); + })["catch"](function (err) { + next(err); + }); +})); +exports.serviceRoutes.get('/getCurrencies', tryCtach_1["default"](function (req, res, next) { + var type = req.query.type; + currencies_1.Currencies.find() + .then(function (curs) { + if (curs) { + var curArray_1 = []; + var priceRial_1; + redis.hashget("dollarPrice") + .then(function (rial) { + if (rial) { + priceRial_1 = Number(rial / 10); + } + var cursMap = curs.map(function (cur) { + if (cur.ab_name !== 'IRR') { + var curInfo_1 = { + currencyName: cur.name, + persianName: cur.per_name, + shortName: cur.ab_name, + icon: cur.icon, + _id: cur._id + }; + if (type === '1') { + return redis.hashGetAll(cur.ab_name + '-g') + .then(function (price) { + if (price && price.current && !Number.isNaN(Number(price.current))) { + if (priceRial_1) { + curInfo_1['price'] = Math.ceil(Number(price.current) * priceRial_1); + curInfo_1['min'] = Math.ceil(Number(price.min) * priceRial_1); + curInfo_1['max'] = Math.ceil(Number(price.max) * priceRial_1); + } + } + curArray_1.push(curInfo_1); + })["catch"](function (err) { + throw (err); + }); + } + else { + curArray_1.push(curInfo_1); + } + } + else { + curArray_1.unshift({ + currencyName: cur.name, + persianName: cur.per_name, + shortName: cur.ab_name, + icon: cur.icon, + _id: cur._id + }); + } + }); + Promise.all(cursMap) + .then(function () { + response_1["default"](res, 'currencies informations', curArray_1); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('currencies not found ', 400, 5, 'ارزیی پیدا نشد!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.serviceRoutes.get('/getImages/:imageType/:imageName', tryCtach_1["default"](function (req, res, next) { + var imageType = req.params.imageType; + var imageName = req.params.imageName; + var validPaths = ['coins']; + var imageFile; + if (req.query.type && validPaths.includes(req.query.type)) { + imageFile = fs.readFileSync("./images/" + imageName); + } + else { + imageFile = fs.readFileSync("./images/" + imageType + "/" + imageName); + } + var ext = path.extname(imageName); + res.contentType("image/" + ext); + res.send(imageFile); +})); +exports.serviceRoutes.get('/getActiveOffers', +// isAuthorized, +tryCtach_1["default"](function (req, res, next) { return __awaiter(void 0, void 0, void 0, function () { + var userId, curId, status, query, rialObj; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + userId = req.session.userId; + curId = req.query.curIdOp; + status = req.query.status; + query = []; + query.push({ expDate: { $gt: Date.now() } }); + if (!mongodb_1.ObjectID.isValid(curId)) return [3 /*break*/, 2]; + return [4 /*yield*/, currencies_1.Currencies.findOne({ name: 'RIAL' }) + .then(function (rial) { + if (rial && rial.name === 'RIAL') { + rialObj = rial; + query.push({ $or: [ + { $and: [{ curGivenId: curId }, { curTakenId: rial._id }] }, + { $and: [{ curTakenId: curId }, { curGivenId: rial._id }] } + ] }); + } + })["catch"](function (err) { + console.log(err); + })]; + case 1: + _a.sent(); + _a.label = 2; + case 2: + ActiveOffers_1.Active_Offers.find({ $and: query }) + .then(function (offers) { + if (offers && Array.isArray(offers) && offers.length > 0) { + var dataArray_2 = []; + if (mongodb_1.ObjectID.isValid(curId)) { + redis.hashGetAll(curId.toString()) + .then(function (curObj) { + var offersMap = offers.map(function (offer) { + if (offer.curTakenId.toString() === rialObj._id.toString()) { + dataArray_2.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: offer.curGivenVal, + Gicon: curObj.icon, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curTakenVal, + Ticon: rialObj.icon, + txType: 'sell', + createDate: offer.created_at, + expireDate: offer.expDate, + owner: userId && userId === offer.userId.toString() ? true : false, + offerId: offer.offerId + }); + } + else { + dataArray_2.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: offer.curTakenVal, + Gicon: curObj.icon, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curGivenVal, + Ticon: rialObj.icon, + txType: 'buy', + createDate: offer.created_at, + expireDate: offer.expDate, + owner: userId && userId === offer.userId.toString() ? true : false, + offerId: offer.offerId + }); + } + }); + Promise.all(offersMap) + .then(function () { + var orderedDataArray = _.orderBy(dataArray_2, function (_a) { + var createDate = _a.createDate; + return createDate; + }, ['desc']); + response_1["default"](res, 'fdasdf', orderedDataArray); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + console.log(err); + }); + } + else { + currencies_1.Currencies.find() + .then(function (curs) { + offers.forEach(function (off) { + var givenCur = _.find(curs, function (i) { return i._id.toString() === off.curGivenId.toString(); }); + var takenCur = _.find(curs, function (i) { return i._id.toString() === off.curTakenId.toString(); }); + if (givenCur && takenCur) { + dataArray_2.push({ + giveCurname: givenCur.name, + giveCurValue: off.curGivenVal, + //givenCurPersianName : givenCur.per_name, + //givenCurShortName : givenCur.ab_name, + //givenCurIcon : givenCur.icon, + takenCurname: takenCur.name, + takenCurValue: off.curTakenVal, + //takenCurpersianName: takenCur.per_name, + //takenCurShortName : takenCur.ab_name, + //takenCurIcon : takenCur.icon, + createDate: off.created_at, + expireDate: off.expDate + }); + } + else { + return; + } + }); + var orderedDataArray = _.orderBy(dataArray_2, function (_a) { + var createDate = _a.createDate; + return createDate; + }, ['desc']); + response_1["default"](res, 'fdasdf', orderedDataArray); + })["catch"](function (err) { + next(err); + }); + } + } + else { + var error = new myError_1["default"]('there is not any active offer in network', 400, 5, 'there is not any active offer in network!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + return [2 /*return*/]; + } + }); +}); })); +exports.serviceRoutes.post('/filterOnTxs', tryCtach_1["default"](function (req, res, next) { + console.log('req.body: ', req.body); + var curId = req.body.curIdOp; + var txType = req.body.txType; + currencies_1.Currencies.findOne({ ab_name: 'IRR' }) + .then(function (doc) { + if (doc && doc.ab_name === 'IRR') { + query_1.searchOnTxs({ curId: curId, txType: txType, rial: doc }) + .then(function (result) { + response_1["default"](res, '', result); + })["catch"](function (err) { + next(err); + }); + } + else { + } + })["catch"](function (err) { + next(err); + }); +})); +exports.serviceRoutes.post('/filterOnOffers', validation_1.userValidationRules('body', 'offerIdOp'), validation_1.userValidationRules('body', 'curGivenIdOp'), validation_1.userValidationRules('body', 'curGivenValOp'), validation_1.userValidationRules('body', 'curTakenIdOp'), validation_1.userValidationRules('body', 'curTakenValOp'), validation_1.userValidationRules('body', 'expDateOp'), validation_1.userValidationRules('body', 'created_atOp'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var offerId = req.body.offerIdOp; + var curGivenId = req.body.curGivenIdOp; + var curGivenVal = req.body.curGivenValOp; + var curTakenId = req.body.curTakenIdOp; + var curTakenVal = req.body.curTakenValOp; + var expDate = req.body.expDateOp; + var created_at = req.body.created_atOp; + query_1.searchOnActiveOffers({ offerId: offerId, curGivenId: curGivenId, curGivenVal: curGivenVal, curTakenId: curTakenId, curTakenVal: curTakenVal, expDate: expDate, created_at: created_at }) + .then(function (result) { + response_1["default"](res, '', result); + })["catch"](function (err) { + next(err); + }); +})); +exports.serviceRoutes.get('/getLocalHorlyPrice', validation_1.userValidationRules('query', 'currencyId'), validation_1.userValidationRules('query', 'interval'), validation_1.userValidationRules('query', 'pageNumber'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var currencyId = req.query.currencyId; + var interval = req.query.interval; + var pageNumber = req.query.pageNumber; + var collection; + if (interval === "h") { + collection = localHourly_1.LocalHourly; + } + else if (interval === "d") { + //collection = + } + else if (interval === "w") { + //collection = + } + else if (interval === "y") { + //collection = + } + else if (interval === "m") { + //collection = + } + collection.aggregate() + .project({ + currencies: { + $filter: { + input: "$currencies", + as: "currency", + cond: { + $eq: ["$$currency.currencyId", new mongodb_1.ObjectID(currencyId)] + } + } + } + }).sort({ name: -1 }).skip(Number(pageNumber) * Number(process.env.CHART_LIMIT)).limit(20) + .then(function (r) { + response_1["default"](res, "....", r); + })["catch"](function (err) { + next(err); + }); +})); diff --git a/server/routes/service.ts b/server/routes/service.ts new file mode 100755 index 0000000..6d5d711 --- /dev/null +++ b/server/routes/service.ts @@ -0,0 +1,665 @@ +import * as express from 'express'; +import * as fetch from 'node-fetch' +import * as fs from 'fs' +import * as path from 'path'; + +import * as _ from 'lodash' + + +import {ObjectID} from 'mongodb' +import { logger } from '../api/logger' +import { searchOnActiveOffers, searchOnTxs } from '../api/query' +import myError from '../api/myError' +import * as redis from '../api/redis' +import { Accepted_Offers } from '../db/acceptedOffers'; +import {LocalHourly} from '../db/localHourly' + +import { userValidationRules, validate } from '../middlewares/validation' +import tryCatch from '../middlewares/tryCtach'; +import successRes from '../middlewares/response'; +import { isAuthorized } from '../middlewares/auth' + + +import { Active_Offers } from '../db/ActiveOffers'; +import { Currencies } from '../db/currencies' + +export const serviceRoutes = express.Router() + + + + +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// GET ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// + +serviceRoutes.get('/getDeafultAcceptedOffers', +tryCatch((req, res, next) => { + const curId = req.query.curIdOp + let rialObj + Currencies.findOne({ ab_name: 'IRR' }) + .then((rial: any) => { + if (rial && rial.ab_name === 'IRR') { + rialObj = { + _id: rial._id, + currencyName: rial.currencyName, + per_name: rial.per_name, + ab_name: rial.ab_name, + icon: rial.icon + } + } else { + throw 'kl' + } + let offersArray = [] + let query = {} + if (ObjectID.isValid(curId)) { + query = { $or: [ + { $and: [{ curGivenId: curId }, { curTakenId: rial._id } ] }, + { $and: [{ curTakenId: curId }, { curGivenId: rial._id } ] } + ] } + } else { + query = { $or: [{ curTakenId : rial._id }, { curGivenId : rial._id } ] } + } + Accepted_Offers.find(query) + .then((offers) => { + const offersMap = offers.map((offer: any) => { + if (offer.curTakenId.toString() === rial._id.toString()) { + return redis.hashGetAll(offer.curGivenId.toString()) + .then((curGivenObj: any) => { + offersArray.push({ + GcurrencyName: curGivenObj.currencyName, + GpersianName: curGivenObj.per_name, + GshortName: curGivenObj.ab_name, + Gvalue: offer.curGivenVal, + Gicon: curGivenObj.icon, + acceptedDate: offer.created_at, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curTakenVal, + Ticon: rialObj.icon, + txType: 'sell' + }) + return offersArray + }) + .catch((err) => { + console.log(err) + }) + } else if (offer.curGivenId.toString() === rial._id.toString()) { + return redis.hashGetAll(offer.curTakenId.toString()) + .then((curTakenObj: any) => { + offersArray.push({ + GcurrencyName: curTakenObj.currencyName, + GpersianName: curTakenObj.per_name, + GshortName: curTakenObj.ab_name, + Gvalue: offer.curTakenVal, + Gicon: curTakenObj.icon, + acceptedDate: offer.created_at, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curGivenVal, + Ticon: rialObj.icon, + txType: 'buy' + }) + return offersArray + }) + .catch((err) => { + console.log(err) + }) + } + }) + Promise.all(offersMap) + .then(() => { + successRes(res, '', offersArray) + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) +})) + +serviceRoutes.get('/getAcceptedOffers', +// userValidationRules('query', 'status'), +// userValidationRules('query', 'rialId'), +// userValidationRules('query', 'currencyId'), +// validate, +tryCatch((req, res, next) => { + const status = req.query.status + const currency = req.query.currencyId + const rialId = req.query.rialId + let query = [] + + if(status === "sell") { + if(rialId) { + query.push({ curGivenId : currency }, { curTakenId : rialId }) + } else { + query.push({ curGivenId : currency }) + } + } else if(status === "buy") { + if(rialId) { + query.push({ curTakenId : currency }, { curGivenId : rialId }) + } else { + query.push({ curTakenId : currency }) + } + } + Accepted_Offers.find({ $and : query }) + .then(offers => { + if(offers[0]){ + let dataArray =[] + redis.hashGetAll(currency.toString()) + .then((cur:any) => { + if(cur){ + let rialName + let rialpesianName + let rialShortName + if(rialId) { + redis.hashGetAll(rialId.toString()) + .then((rial: any) => { + if(rial) { + rialName = rial.currencyName + rialpesianName = rial.per_name + rialShortName = rial.ab_name + } else { + const error = new myError( + 'rial not found!', + 400, + 5, + 'ریال پیدا نشد!', + 'خطا رخ داد' + ) + throw(error) + } + }) + .catch((err)=>{ + throw(err) + }) + } + const offmap = offers.map((off: any) => { + if(status === "sell"){ + if(rialId){ + dataArray.push({ + GcurrencyName : cur.currencyName, + GpersianName:cur.per_name, + GshortName :cur.ab_name, + Gvalue : off.curTakenVal, + acceptedDate : off.created_at, + TcurrencyName : rialName, + TpersianName: rialpesianName, + TshortName : rialShortName, + Tvalue : off.curTakenVal, + }) + } else { + return redis.hashGetAll(off.curTakenId.toString()) + .then((curT: any) => { + if(curT){ + dataArray.push({ + GcurrencyName : cur.currencyName, + GpersianName:cur.per_name, + GshortName :cur.ab_name, + Gvalue : off.curGivenVal, + acceptedDate : off.created_at, + TcurrencyName : curT.currencyName, + TpersianName:curT.per_name, + TshortName :curT.ab_name, + Tvalue : off.curTakenVal, + }) + } else { + return + } + }) + .catch((err)=>{ + next(err) + }) + } + } + else if(status === "buy"){ + if(rialId) { + dataArray.push({ + TcurrencyName : cur.currencyName, + TpersianName:cur.per_name, + TshortName :cur.ab_name, + Tvalue : off.curTakenVal, + acceptedDate : off.created_at, + GcurrencyName : rialName, + GpersianName:rialpesianName, + GshortName :rialShortName, + Gvalue : off.curGivenVal, + }) + } else { + return redis.hashGetAll(off.curGivenId.toString()) + .then((curG: any) => { + if(curG){ + dataArray.push({ + TcurrencyName : cur.currencyName, + TpersianName:cur.per_name, + TshortName :cur.ab_name, + Tvalue : off.curTakenVal, + acceptedDate : off.created_at, + GcurrencyName : curG.currencyName, + GpersianName:curG.per_name, + GshortName :curG.ab_name, + Gvalue : off.curGivenVal, + }) + } else { + return + } + }) + .catch((err)=>{ + next(err) + }) + } + } + }) + Promise.all(offmap) + .then(()=>{ + successRes(res, "offer founded", dataArray) + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'currency not found!', + 400, + 5, + 'ارز مربوطه پیدا نشد!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } else{ + const error = new myError( + 'offer not found!', + 400, + 5, + 'سفارش پیدا نشد!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) +})) + + +serviceRoutes.get('/getOnlinePrices', tryCatch((req, res, next) => { + let curArr = [] + const fetchBTC = () => { + return fetch(`https://api.nomics.com/v1/exchange-rates/history?key=${process.env.CURRENCY_API_KEY}¤cy=BTC&start=2020-09-25T00%3A00%3A00Z`, { + method: 'GET' + }) + .then(res => res.json()) + .then(response => { + curArr.push({ currency: 'BTC', prices: response }) + }) + .catch((err) => { + console.log(err) + }) + } + const fetchETH = () => { + return fetch(`https://api.nomics.com/v1/exchange-rates/history?key=${process.env.CURRENCY_API_KEY}¤cy=ETH&start=2020-09-25T00%3A00%3A00Z`, { + method: 'GET' + }) + .then(res => res.json()) + .then(response => { + curArr.push({ currency: 'ETH', prices: response }) + }) + .catch((err) => { + console.log(err) + }) + } + const fetchTRX = () => { + return fetch(`https://api.nomics.com/v1/exchange-rates/history?key=${process.env.CURRENCY_API_KEY}¤cy=TRX&start=2020-09-25T00%3A00%3A00Z`, { + method: 'GET' + }) + .then(res => res.json()) + .then(response => { + curArr.push({ currency: 'TRX', prices: response }) + }) + .catch((err) => { + console.log(err) + }) + } + return Promise.all([ fetchBTC(), fetchETH(), fetchTRX() ]) + .then(() => { + successRes(res, '', curArr) + }) + .catch((err) => { + next(err) + }) +})) + +serviceRoutes.get('/getCurrencies', +tryCatch((req, res, next) => { + const type = req.query.type + Currencies.find() + .then((curs) => { + if(curs) { + let curArray = [] + let priceRial + redis.hashget("dollarPrice") + .then((rial: number) => { + if(rial) { + priceRial = Number(rial/10) + } + const cursMap = curs.map((cur: any) => { + if (cur.ab_name !== 'IRR') { + let curInfo = { + currencyName : cur.name, + persianName : cur.per_name, + shortName : cur.ab_name, + icon: cur.icon, + _id: cur._id + } + if (type === '1') { + return redis.hashGetAll(cur.ab_name+'-g') + .then((price: any) => { + if(price && price.current && !Number.isNaN(Number(price.current))) { + if (priceRial) { + curInfo['price'] = Math.ceil(Number(price.current) * priceRial) + curInfo['min'] = Math.ceil(Number(price.min) * priceRial) + curInfo['max'] = Math.ceil(Number(price.max) * priceRial) + } + } + curArray.push(curInfo) + }) + .catch((err)=>{ + throw (err) + }) + } else { + curArray.push(curInfo) + } + } else { + curArray.unshift({ + currencyName : cur.name, + persianName : cur.per_name, + shortName : cur.ab_name, + icon: cur.icon, + _id: cur._id + }) + } + }) + Promise.all(cursMap) + .then(() => { + successRes(res,'currencies informations', curArray) + }) + .catch((err) => { + next (err) + }) + }) + .catch((err)=>{ + next(err) + }) + } else { + const error = new myError ( + 'currencies not found ', + 400, + 5, + 'ارزیی پیدا نشد!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) +})) + + +serviceRoutes.get('/getImages/:imageType/:imageName', + tryCatch((req, res, next) => { + const imageType = req.params.imageType + const imageName = req.params.imageName + + const validPaths = ['coins'] + let imageFile + if (req.query.type && validPaths.includes(req.query.type)) { + imageFile = fs.readFileSync(`./images/${imageName}`) + } else { + imageFile = fs.readFileSync(`./images/${imageType}/${imageName}`) + } + const ext = path.extname(imageName) + res.contentType(`image/${ext}`) + res.send(imageFile) + })) + +serviceRoutes.get('/getActiveOffers', +// isAuthorized, +tryCatch(async (req, res, next) => { + const userId = req.session.userId + const curId = req.query.curIdOp + const status = req.query.status + let query = [] + let rialObj + query.push({ expDate: { $gt: Date.now() } }) + if (ObjectID.isValid(curId)) { + await Currencies.findOne({ name: 'RIAL' }) + .then((rial: any) => { + if (rial && rial.name === 'RIAL') { + rialObj = rial + query.push({ $or: [ + { $and: [{ curGivenId: curId }, { curTakenId: rial._id } ] }, + { $and: [{ curTakenId: curId }, { curGivenId: rial._id } ] } + ] }) + } + }) + .catch((err) => { + console.log(err) + }) + } + Active_Offers.find( { $and: query } ) + .then((offers) => { + if(offers && Array.isArray(offers) && offers.length > 0) { + let dataArray = [] + if (ObjectID.isValid(curId)) { + redis.hashGetAll(curId.toString()) + .then((curObj: any) => { + const offersMap = offers.map((offer) => { + if (offer.curTakenId.toString() === rialObj._id.toString()) { + dataArray.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: offer.curGivenVal, + Gicon: curObj.icon, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curTakenVal, + Ticon: rialObj.icon, + txType: 'sell', + createDate : offer.created_at, + expireDate : offer.expDate, + owner: userId && userId === offer.userId.toString() ? true : false, + offerId: offer.offerId + }) + } else { + dataArray.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: offer.curTakenVal, + Gicon: curObj.icon, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curGivenVal, + Ticon: rialObj.icon, + txType: 'buy', + createDate : offer.created_at, + expireDate : offer.expDate, + owner: userId && userId === offer.userId.toString() ? true : false, + offerId: offer.offerId + }) + } + }) + Promise.all(offersMap) + .then(() => { + const orderedDataArray = _.orderBy(dataArray,({createDate}) => createDate, ['desc']) + successRes(res, 'fdasdf', orderedDataArray) + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + console.log(err) + }) + } else { + Currencies.find() + .then((curs) => { + offers.forEach((off: any) => { + const givenCur = _.find(curs, (i) => { return i._id.toString() === off.curGivenId.toString()}) + const takenCur = _.find(curs, (i) => { return i._id.toString() === off.curTakenId.toString()}) + if(givenCur && takenCur) { + dataArray.push ({ + giveCurname : givenCur.name, + giveCurValue : off.curGivenVal, + //givenCurPersianName : givenCur.per_name, + //givenCurShortName : givenCur.ab_name, + //givenCurIcon : givenCur.icon, + takenCurname : takenCur.name, + takenCurValue : off.curTakenVal, + //takenCurpersianName: takenCur.per_name, + //takenCurShortName : takenCur.ab_name, + //takenCurIcon : takenCur.icon, + createDate : off.created_at, + expireDate : off.expDate, + }) + } else { + return + } + }) + const orderedDataArray = _.orderBy(dataArray,({createDate}) => createDate, ['desc']) + successRes(res, 'fdasdf', orderedDataArray) + }) + .catch((err) => { + next(err) + }) + } + } else { + const error = new myError( + 'there is not any active offer in network', + 400, + 5, + 'there is not any active offer in network!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) =>{ + next(err) + }) + })) + +serviceRoutes.post('/filterOnTxs', +tryCatch((req, res, next) => { + console.log('req.body: ', req.body) + const curId = req.body.curIdOp + const txType = req.body.txType + Currencies.findOne({ ab_name: 'IRR' }) + .then((doc: any) => { + if (doc && doc.ab_name === 'IRR') { + searchOnTxs({ curId, txType, rial: doc }) + .then((result) => { + successRes(res, '', result) + }) + .catch((err) => { + next(err) + }) + } else { + + } + }) + .catch((err) => { + next(err) + }) +})) + +serviceRoutes.post('/filterOnOffers', +userValidationRules('body', 'offerIdOp'), +userValidationRules('body', 'curGivenIdOp'), +userValidationRules('body', 'curGivenValOp'), +userValidationRules('body', 'curTakenIdOp'), +userValidationRules('body', 'curTakenValOp'), +userValidationRules('body', 'expDateOp'), +userValidationRules('body', 'created_atOp'), +validate, +tryCatch((req, res, next) => { + const offerId = req.body.offerIdOp + const curGivenId = req.body.curGivenIdOp + const curGivenVal = req.body.curGivenValOp + const curTakenId = req.body.curTakenIdOp + const curTakenVal = req.body.curTakenValOp + const expDate = req.body.expDateOp + const created_at = req.body.created_atOp + + searchOnActiveOffers({ offerId, curGivenId, curGivenVal, curTakenId, curTakenVal, expDate, created_at }) + .then((result) => { + successRes(res, '', result) + }) + .catch((err) => { + next(err) + }) +})) + + + + +serviceRoutes.get('/getLocalHorlyPrice', +userValidationRules('query','currencyId'), +userValidationRules('query','interval'), +userValidationRules('query','pageNumber'), +validate, + tryCatch((req, res, next) => { + const currencyId = req.query.currencyId + const interval = req.query.interval + const pageNumber = req.query.pageNumber + let collection + if(interval==="h"){ + collection = LocalHourly + }else if(interval==="d"){ + //collection = + }else if(interval==="w"){ + //collection = + }else if(interval==="y"){ + //collection = + } + else if(interval==="m"){ + //collection = + } + collection.aggregate() + .project({ + currencies:{ + $filter: { + input: "$currencies", + as: "currency", + cond: { + $eq: ["$$currency.currencyId",new ObjectID(currencyId)] + } + } + } + }).sort({name: -1}).skip(Number(pageNumber)*Number(process.env.CHART_LIMIT)).limit(20) + .then((r)=>{ + successRes(res,"....",r) + }).catch((err)=>{ + next(err) + }) +})) \ No newline at end of file diff --git a/server/routes/tickets.js b/server/routes/tickets.js new file mode 100755 index 0000000..5d2f52f --- /dev/null +++ b/server/routes/tickets.js @@ -0,0 +1,779 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.ticketRoutes = void 0; +var express = require("express"); +var fetch = require("node-fetch"); +var mongoose = require("mongoose"); +var logger_1 = require("../api/logger"); +var myError_1 = require("../api/myError"); +var auth_1 = require("../middlewares/auth"); +var response_1 = require("../middlewares/response"); +var validation_1 = require("../middlewares/validation"); +var tryCtach_1 = require("../middlewares/tryCtach"); +var user_1 = require("../db/user"); +var mongodb_1 = require("mongodb"); +var _ = require("lodash"); +var MongoClient = require('mongodb').MongoClient; +var mongoClient = new MongoClient(process.env.MONGO_DATABASE, { + useUnifiedTopology: true, + useNewUrlParser: true +}); +var connection = mongoClient.connect(); +var dbo = mongoClient.db(process.env.MONGO_DATABASE_NAME_TICKETS); +exports.ticketRoutes = express.Router(); +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// GET ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +// connection.then(() => { +// var dbo = mongoClient.db(process.env.MONGO_DATABASE_NAME) +// dbo.collection('messages').watch().on('change', next => { +// const message = next.fullDocument; +// const ownerId = message.owner +// dbo.collection('accounts').findOne({ _id: ownerId }, (err, account) => { +// const email = account.email +// client.smembers(email, (err, reply) => { +// const socketIds = reply +// socketIds.forEach((socketId) => { +// onlineLoginUsers.to(socketId).emit('my_new_message', message) +// }) +// }) +// }) +// }) +// }) +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// GET ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +exports.ticketRoutes.get('/getTickets', auth_1.isAuthorized, tryCtach_1["default"](function (req, res, next) { + var userId = req.session.userId; + var newTicketsArr = []; + var openTicketsArr = []; + var pendingTicketsArr = []; + var closedTicketsArr = []; + connection.then(function () { + dbo.collection('accounts').findOne({ userId: new mongodb_1.ObjectID(userId) }) + .then(function (account) { + if (account && account.userId.toString() === userId) { + var ownerId_1 = account._id; + dbo.collection('tickets').find({ owner: ownerId_1 }).toArray() + .then(function (tickets) { + var ticketsArr = tickets.map(function (e) { + var comments = e.comments.map(function (elm) { + if (elm.owner.toString() === ownerId_1.toString()) { + elm['ownerType'] = 'User'; + } + else { + elm['ownerType'] = 'Admin'; + } + return elm; + }); + var sortedComments = _.orderBy(comments, ['date'], ['desc']); + switch (e.status) { + case 0: + newTicketsArr.push({ + _id: e._id, + status: 'جدید', + date: e.date, + subject: e.subject, + issue: e.issue, + comments: sortedComments + }); + break; + case 1: + openTicketsArr.push({ + _id: e._id, + status: 'باز', + date: e.date, + subject: e.subject, + issue: e.issue, + comments: sortedComments + }); + break; + case 2: + pendingTicketsArr.push({ + _id: e._id, + status: 'منتظر پاسخ', + date: e.date, + subject: e.subject, + issue: e.issue, + comments: sortedComments + }); + break; + case 3: + closedTicketsArr.push({ + _id: e._id, + status: 'بسته', + date: e.date, + subject: e.subject, + issue: e.issue, + comments: sortedComments + }); + break; + default: + break; + } + }); + Promise.all(ticketsArr) + .then(function () { + var modifiedTickets = { + newTickets: { + newTicketsArr: newTicketsArr, + quantity: newTicketsArr.length + }, + openTickets: { + openTicketsArr: openTicketsArr, + quantity: openTicketsArr.length + }, + pendingTickets: { + pendingTicketsArr: pendingTicketsArr, + quantity: pendingTicketsArr.length + }, + closedTickets: { + closedTicketsArr: closedTicketsArr, + quantity: closedTicketsArr.length + } + }; + console.log(modifiedTickets); + response_1["default"](res, 'The tickets are sent', modifiedTickets); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('The user does not have ticket account!', 400, 43, 'کاربر دارای حساب تیکتینگ نیست!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); +})); +exports.ticketRoutes.get('/startConversation', auth_1.isAuthorized, tryCtach_1["default"](function (req, res, next) { + var userId = req.session.userId; + connection.then(function () { + dbo.collection('accounts').findOne({ userId: userId }) + .then(function (user) { + if (user && user.userId.toString() === userId) { + var ownerId_2 = [user._id]; + var accessToken_1 = user.accessToken; + var supportId_1 = []; + dbo.collection('accounts').find({ role: process.env.SUPPORT_ROLE_ID }).toArray() + .then(function (docs) { + if (docs && docs.length > 0) { + var docMap = docs.map(function (doc) { + supportId_1.push(doc._id); + }); + Promise.all(docMap) + .then(function () { + var participants = ownerId_2.concat(supportId_1); + var body1 = { + owner: ownerId_2, + participants: participants + }; + var bodyJson = JSON.stringify(body1); + fetch(process.env.TICKET_START_CONVERSATION, { + method: 'POST', + body: bodyJson, + headers: { + accessToken: accessToken_1, + 'Content-Type': 'application/json' + } + }) + .then(function (res) { return res.json(); }) + .then(function (response) { + if (response.success === true && response.conversation.participants.length > 1) { + logger_1.logger.info("A conversation starts successfully for user " + userId + " by id " + response.conversation._id); + response_1["default"](res, 'Conversation started successfully!', response.conversation._id); + } + })["catch"](function (err) { + next(err); + }); + }); + } + else { + var error = new myError_1["default"]('There is no supporter!', 400, 43, 'هیچ پشتیبانی ثبت نشده است!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('The user does not have valid ticket account!', 400, 45, 'کاربر دارای حساب تیکتینگ نیست!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); +})); +exports.ticketRoutes.post('/deleteTickets', auth_1.isAuthorized, +// userValidationRules('body', 'ticketIdArray'), +// validate, +tryCtach_1["default"](function (req, res, next) { + var userId = req.session.userId; + var ticketIdArray = req.body.ticketIdArray; + connection.then(function () { + dbo.collection('accounts').findOne({ userId: new mongodb_1.ObjectID(userId) }) + .then(function (user) { return __awaiter(void 0, void 0, void 0, function () { + var ownerId, accessToken, ticketObjectIdArray_1, error; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!(user && user.userId.toString() === userId)) return [3 /*break*/, 2]; + ownerId = user._id; + accessToken = user.accessToken; + ticketObjectIdArray_1 = []; + return [4 /*yield*/, ticketIdArray.map(function (elemet) { + ticketObjectIdArray_1.push(new mongodb_1.ObjectID(elemet)); + })]; + case 1: + _a.sent(); + dbo.collection('tickets').updateMany({ + $and: [{ _id: { $in: ticketObjectIdArray_1 } }, { owner: new mongodb_1.ObjectID(ownerId) }] + }, { + $set: { deleted: true } + }) + .then(function (result) { + if (result && result.matchedCount != 0) { + if (result.modifiedCount > 0) { + response_1["default"](res, 'More than 1 tickets deleted!'); + } + else { + response_1["default"](res, 'The ticket were deleted before'); + } + } + else { + var error = new myError_1["default"]('There is no ticket with your id , and requested ticketid array!', 400, 43, 'تیکتی با اسم شما و همچنین با ایدی ورودی پیدا نشد!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + return [3 /*break*/, 3]; + case 2: + error = new myError_1["default"]('The user does not have valid ticket account!', 400, 45, 'کاربر دارای حساب تیکتینگ نیست!', 'خطا رخ داد'); + next(error); + _a.label = 3; + case 3: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); +})); +exports.ticketRoutes.get('/updateTicketStatus', auth_1.isAuthorized, validation_1.userValidationRules('query', 'ticketId'), validation_1.userValidationRules('query', 'ticketStatus'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { return __awaiter(void 0, void 0, void 0, function () { + var userId, ticketId, status; + return __generator(this, function (_a) { + userId = req.session.userId; + ticketId = req.query.ticketId; + status = req.query.ticketStatus; + connection.then(function () { + dbo.collection('accounts').findOne({ userId: new mongodb_1.ObjectID(userId) }) + .then(function (user) { + if (user && user.userId.toString() === userId) { + var ownerId = user._id; + dbo.collection('tickets').updateOne({ _id: new mongodb_1.ObjectID(ticketId), owner: new mongodb_1.ObjectID(ownerId) }, { $set: { status: Number(status) } }) + .then(function (result) { return __awaiter(void 0, void 0, void 0, function () { + var error; + return __generator(this, function (_a) { + if (result && result.matchedCount != 0) { + if (result.modifiedCount === 1) { + response_1["default"](res, 'The ticket status is changed successfully!'); + } + else { + response_1["default"](res, 'The ticket status is the same was before!'); + } + } + else { + error = new myError_1["default"]('There is no ticket with your id , and requested ticketid!', 400, 43, 'تیکتی با اسم شما و همچنین با ایدی ورودی پیدا نشد!', 'خطا رخ داد'); + next(error); + } + return [2 /*return*/]; + }); + }); })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('The user does not have valid ticket account!', 400, 45, 'کاربر دارای حساب تیکتینگ نیست!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + return [2 /*return*/]; + }); +}); })); +exports.ticketRoutes.get('/getMessages', auth_1.isAuthorized, tryCtach_1["default"](function (req, res, next) { + var userId = req.session.userId; + connection.then(function () { + dbo.collection('accounts').findOne({ userId: userId }) + .then(function (doc) { + if (doc && doc.userId.toString() === userId) { + var accessToken = doc.accessToken; + fetch(process.env.TICKET_GET_MESSAGES_URL, { + method: 'GET', + headers: { + accessToken: accessToken, + 'Content-Type': 'application/json' + } + }) + .then(function (res) { return res.json(); }) + .then(function (response) { + if (response.success === true) { + logger_1.logger.info("The messages of user " + userId + " is gotten successfully"); + response_1["default"](res, 'The messages is gotten successfully!'); + } + else { + var err = (response.error && response.error.message) ? response.error.message : ''; + logger_1.logger.warn("Getting messages for user " + userId + " had some problems:" + ' ' + err); + var error = new myError_1["default"]('Error happened during the getting messages!', 500, 48, 'در به دست آوردن پیام ها مشکلی پیش آمده است.', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('The user does not have valid ticket account!', 400, 45, 'کاربر دارای حساب تیکتینگ نیست!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); +})); +exports.ticketRoutes.post('/register', +//isAuthorized, +tryCtach_1["default"](function (req, res, next) { return __awaiter(void 0, void 0, void 0, function () { + var userId, session; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + userId = req.body.userId; + return [4 /*yield*/, mongoose.startSession()]; + case 1: + session = _a.sent(); + connection.then(function () { + dbo.collection('groups').findOne({}, { session: session }) + .then(function (group) { + if (group && group._id) { + var body1 = { + aUsername: req.body.aUsername, + aPass: req.body.aPass, + aPassConfirm: req.body.aPassConfirm, + aFullname: req.body.aFullname, + userId: req.body.userId, + aTitle: req.body.aTitle, + aGrps: [group._id.toString()], + aRole: process.env.USER_ROLE_ID, + aEmail: req.body.aEmail + }; + var body1Json = JSON.stringify(body1); + fetch("http://localhost:8118/api/v1/users/create", { + method: 'POST', + body: body1Json, + headers: { + accessToken: process.env.ACCESS_TOKEN, + 'Content-Type': 'application/json' + } + }) + .then(function (res) { return res.json(); }) + .then(function (response) { + if (response.success === true) { + var supportId_2 = []; + connection.then(function () { + dbo.collection('accounts').find({ role: new mongodb_1.ObjectID("5fb21707795091261c6d2192") }).toArray() + .then(function (docs) { + if (docs && docs.length > 0) { + var docMap = docs.map(function (doc) { + supportId_2.push(doc._id); + }); + Promise.all(docMap) + .then(function () { + session.withTransaction(function () { return __awaiter(void 0, void 0, void 0, function () { + var participants; + return __generator(this, function (_a) { + participants = group.members.concat(supportId_2); + return [2 /*return*/, user_1.User.findOne({ _id: userId }) + .then(function (user) { return __awaiter(void 0, void 0, void 0, function () { + var error; + return __generator(this, function (_a) { + if (user && user._id.toString() === userId.toString()) { + group.members = participants; + } + else { + error = new myError_1["default"]('The user does not have valid ticket account!', 400, 45, 'کاربر دارای حساب تیکتینگ نیست!', 'خطا رخ داد'); + throw (error); + } + return [2 /*return*/]; + }); + }); })["catch"](function (err) { + throw (err); + })]; + }); + }); }) + .then(function () { + response_1["default"](res, 'The ticket account is created successfully!'); + })["catch"](function (err) { + logger_1.logger.error(err); + throw (err); + })["finally"](function () { + session.endSession(); + }); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('There is no supporter!', 400, 43, 'هیچ پشتیبانی ثبت نشده است!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + }); + } + else { + logger_1.logger.warn("Ticket account Could not be created for user with email " + userId); + var error = new myError_1["default"]('Error happened during the creating ticket account!', 500, 49, 'در ایجاد تیکت مشکلی پیش آمده است!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + return [2 /*return*/]; + } + }); +}); })); +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// POST ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +exports.ticketRoutes.post('/createTicket', auth_1.isAuthorized, validation_1.userValidationRules('body', 'ticketSubject'), validation_1.userValidationRules('body', 'ticketType'), validation_1.userValidationRules('body', 'ticketIssue'), validation_1.userValidationRules('body', 'ticketPriority'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var userId = req.session.userId; + var subject = req.body.ticketSubject; + var type = req.body.ticketType; + var issue = req.body.ticketIssue; + var priority = req.body.ticketPriority; + var priorityId; + var typeId; + var groupId; + var accessToken; + var objectId; + var findPriority = function () { + return dbo.collection('priorities').findOne({ name: priority }) + .then(function (priorityDoc) { + if (priorityDoc && priorityDoc.name === priority) { + priorityId = priorityDoc._id; + } + else { + var error = new myError_1["default"]('Priority is not valid!', 400, 57, 'اولویت دارای اعتبار نیست!', 'خطا رخ داد'); + throw error; + } + })["catch"](function (err) { + throw (err); + }); + }; + var findType = function () { + return dbo.collection('tickettypes').findOne({ name: type }) + .then(function (typ) { + if (typ && typ.name === type) { + return typeId = typ._id; + } + else { + var error = new myError_1["default"]('Type is not valid!', 400, 57, 'اولویت دارای اعتبار نیست!', 'خطا رخ داد'); + throw error; + } + })["catch"](function (err) { + throw (err); + }); + }; + var findGroup = function () { + return dbo.collection('groups').findOne({ name: "Exchange" }) + .then(function (group) { + if (group && group.name === "Exchange") { + return groupId = group._id; + } + else { + var error = new myError_1["default"]('Group is not valid!', 400, 57, 'گروه دارای اعتبار نیست!', 'خطا رخ داد'); + throw error; + } + })["catch"](function (err) { + throw (err); + }); + }; + var findAccount = function () { + return dbo.collection('accounts').findOne({ userId: new mongodb_1.ObjectID(userId) }) + .then(function (account) { + console.log(account); + if (account && account.userId.toString() === userId) { + accessToken = account.accessToken; + return objectId = account._id; + } + else { + var error = new myError_1["default"]('user address is not valid!', 400, 12, 'کاربر دارای حساب تیکتینگ نیست', 'خطا رخ داد'); + throw error; + } + })["catch"](function (err) { + throw err; + }); + }; + connection.then(function () { + return Promise.all([findAccount(), findGroup(), findPriority(), findType()]) + .then(function () { + var body = { + subject: subject, + issue: issue, + owner: objectId, + group: groupId, + type: typeId, + priority: priorityId, + tags: [] + }; + var bodyJson = JSON.stringify(body); + console.log('bodyJson: ', bodyJson); + fetch(process.env.TICKET_CREATE_TICKET_URL, { + method: 'POST', + body: bodyJson, + headers: { + accessToken: accessToken, + 'Content-Type': 'application/json' + } + }) + .then(function (res) { return res.json(); }) + .then(function (response) { + if (response.success === true) { + logger_1.logger.info("The ticket " + response.ticket._id + " for user " + userId + " is created successfully"); + response_1["default"](res, 'Ticket created successfully!'); + } + else { + logger_1.logger.error('Error happened during creating ticket account!' + ' ' + response.body); + var error = new myError_1["default"]('Error happened during the creating ticket account!', 500, 49, 'در ایجاد تیکت مشکلی پیش آمده است!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); +})); +exports.ticketRoutes.post('/addCommentToTicket', auth_1.isAuthorized, validation_1.userValidationRules('body', 'ticketId'), validation_1.userValidationRules('body', 'ticketComment'), validation_1.validate, tryCtach_1["default"](function (req, res, next) { + var userId = req.session.userId; + var ticketId = req.body.ticketId; + var comment = req.body.ticketComment; + var canAddComment = false; + var findRole = function () { + return null; + }; + connection.then(function () { + dbo.collection('accounts').findOne({ userId: new mongodb_1.ObjectID(userId) }) + .then(function (doc) { + if (doc && doc.userId.toString() === userId.toString()) { + dbo.collection('tickets').findOne({ _id: new mongodb_1.ObjectID(ticketId) }) + .then(function (theTicket) { + if (theTicket && theTicket._id.toString() === ticketId) { + console.log('theTicket.owner: ', theTicket.owner); + if (theTicket.owner.toString() === doc._id.toString()) { + canAddComment = true; + } + else { + findRole = function () { + return dbo.collection('roles').findOne({ _id: new mongodb_1.ObjectID(doc.roleId) }) + .then(function (theRole) { + if (theRole && theRole.name !== 'User') { + canAddComment = true; + } + })["catch"](function (err) { + throw (err); + }); + }; + } + Promise.all([findRole()]) + .then(function () { + if (canAddComment) { + var accessToken = doc.accessToken; + var body = { + _id: ticketId, + ticketId: false, + note: false, + owner: doc._id, + comment: comment + }; + var bodyJson = JSON.stringify(body); + fetch(process.env.TICKET_ADD_COMMENT_URL, { + method: 'POST', + body: bodyJson, + headers: { + accessToken: accessToken, + 'Content-Type': 'application/json' + } + }) + .then(function (res) { return res.json(); }) + .then(function (response) { + if (response.success === true) { + logger_1.logger.info("A comment for ticket " + response.ticket._id + " for user " + userId + " is added successfully"); + response_1["default"](res, 'Comment added successfully!'); + } + else { + logger_1.logger.warn("Creating ticket for user " + userId + " had some problems:" + ' ' + response.error.message); + var error = new myError_1["default"]('Error happened during the creating ticket account!', 500, 49, 'در ایجاد تیکت مشکلی پیش آمده است!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('The user does not have authority!', 400, 62, 'شما مجاز به انجام چنین کاری نیستید!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('ticketId is not valid!', 400, 62, 'چنین تیکتی در سیستم ثبت نشده است!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('OwnerId is not valid!', 400, 62, 'کاربر دارای حساب تیکتینگ نیست!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); +})); +exports.ticketRoutes.post('/sendMessages', auth_1.isAuthorized, +// userValidationRules('body', 'message'), +// validate, +tryCtach_1["default"](function (req, res, next) { + var userId = req.session.userId; + var message = req.body.message; + connection.then(function () { + dbo.collection('accounts').findOne({ userId: userId }) + .then(function (doc) { + if (doc && doc.userId.toString() === userId) { + var ownerId_3 = doc._id; + var accessToken_2 = doc.accessToken; + dbo.collection('conversations').findOne({ 'userMeta.userId': ownerId_3 }) + .then(function (conversation) { + var conversationId = conversation._id; + var body = { + owner: ownerId_3, + cId: conversationId, + body: message + }; + var bodyJson = JSON.stringify(body); + fetch(process.env.TICKET_SEND_MESSAGE_URL, { + method: 'POST', + body: bodyJson, + headers: { + accessToken: accessToken_2, + 'Content-Type': 'application/json' + } + }) + .then(function (res) { return res.json(); }) + .then(function (response) { + if (response.success === true) { + logger_1.logger.info("The message for user " + userId + " is sent successfully"); + response_1["default"](res, 'The message is sent successfully!'); + } + else { + var err = (response.error && response.error.message) ? response.error.message : ''; + logger_1.logger.warn("Sending message for user " + userId + " had some problems:" + ' ' + err); + var error = new myError_1["default"]('Error happened during the creating ticket account!', 500, 49, 'در ایجاد تیکت مشکلی پیش آمده است!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('The user does not have valid ticket account!', 400, 45, 'کاربر دارای حساب تیکتینگ نیست!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); +})); diff --git a/server/routes/tickets.ts b/server/routes/tickets.ts new file mode 100755 index 0000000..986834c --- /dev/null +++ b/server/routes/tickets.ts @@ -0,0 +1,929 @@ +import * as express from 'express'; +import * as fetch from 'node-fetch' +import * as mongoose from 'mongoose' +import { logger } from '../api/logger' +import myError from '../api/myError' + +import { isAuthorized } from '../middlewares/auth' +import successRes from '../middlewares/response' +import { userValidationRules, validate } from '../middlewares/validation' +import tryCatch from '../middlewares/tryCtach' +import { rateLimiterMiddleware } from '../middlewares/preventBruteForce' + +import { User } from '../db/user' +import { ObjectID } from 'mongodb'; +import * as _ from 'lodash'; + + +var MongoClient = require('mongodb').MongoClient + + +const mongoClient = new MongoClient(process.env.MONGO_DATABASE, { + useUnifiedTopology: true, + useNewUrlParser: true +}) +const connection = mongoClient.connect() +var dbo = mongoClient.db(process.env.MONGO_DATABASE_NAME_TICKETS) + + +export const ticketRoutes = express.Router() + + +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// GET ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +// connection.then(() => { +// var dbo = mongoClient.db(process.env.MONGO_DATABASE_NAME) +// dbo.collection('messages').watch().on('change', next => { +// const message = next.fullDocument; +// const ownerId = message.owner +// dbo.collection('accounts').findOne({ _id: ownerId }, (err, account) => { +// const email = account.email +// client.smembers(email, (err, reply) => { +// const socketIds = reply +// socketIds.forEach((socketId) => { +// onlineLoginUsers.to(socketId).emit('my_new_message', message) +// }) +// }) +// }) +// }) +// }) + +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// GET ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// + +ticketRoutes.get('/getTickets', +isAuthorized, +tryCatch((req, res, next) => { + const userId = req.session.userId + let newTicketsArr = [] + let openTicketsArr = [] + let pendingTicketsArr = [] + let closedTicketsArr = [] + connection.then(() => { + dbo.collection('accounts').findOne({ userId: new ObjectID(userId) }) + .then((account) => { + if (account && account.userId.toString() === userId) { + const ownerId = account._id + dbo.collection('tickets').find({ owner: ownerId }).toArray() + .then((tickets) => { + const ticketsArr = tickets.map((e) => { + const comments = e.comments.map((elm) => { + if(elm.owner.toString() === ownerId.toString()) { + elm['ownerType'] = 'User' + } else { + elm['ownerType'] = 'Admin' + } + return elm + }) + const sortedComments = _.orderBy(comments, ['date'], ['desc']) + switch (e.status) { + case 0: + newTicketsArr.push( + { + _id: e._id, + status: 'جدید', + date: e.date, + subject: e.subject, + issue: e.issue, + comments: sortedComments + } + ) + break; + case 1: + openTicketsArr.push( + { + _id: e._id, + status: 'باز', + date: e.date, + subject: e.subject, + issue: e.issue, + comments: sortedComments + } + ) + break; + case 2: + pendingTicketsArr.push( + { + _id: e._id, + status: 'منتظر پاسخ', + date: e.date, + subject: e.subject, + issue: e.issue, + comments: sortedComments + } + ) + break; + case 3: + closedTicketsArr.push( + { + _id: e._id, + status: 'بسته', + date: e.date, + subject: e.subject, + issue: e.issue, + comments: sortedComments + } + ) + break; + + default: + break; + } + }) + Promise.all(ticketsArr) + .then(() => { + const modifiedTickets = { + newTickets: { + newTicketsArr, + quantity: newTicketsArr.length + }, + openTickets: { + openTicketsArr, + quantity: openTicketsArr.length + }, + pendingTickets: { + pendingTicketsArr, + quantity: pendingTicketsArr.length + }, + closedTickets: { + closedTicketsArr, + quantity: closedTicketsArr.length + } + } + console.log(modifiedTickets) + successRes(res, 'The tickets are sent', modifiedTickets) + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'The user does not have ticket account!', + 400, + 43, + 'کاربر دارای حساب تیکتینگ نیست!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) +})) + +ticketRoutes.get('/startConversation', +isAuthorized, +tryCatch((req, res, next) => { + const userId = req.session.userId + connection.then(() => { + dbo.collection('accounts').findOne({ userId: userId }) + .then((user) => { + if (user && user.userId.toString() === userId) { + const ownerId = [user._id] + const accessToken = user.accessToken + const supportId = [] + dbo.collection('accounts').find({ role: process.env.SUPPORT_ROLE_ID }).toArray() + .then((docs) => { + if (docs && docs.length > 0) { + const docMap = docs.map((doc) => { + supportId.push(doc._id) + }) + Promise.all(docMap) + .then(() => { + const participants = ownerId.concat(supportId) + const body1 = { + owner: ownerId, + participants: participants + } + const bodyJson = JSON.stringify(body1) + fetch(process.env.TICKET_START_CONVERSATION, { + method: 'POST', + body : bodyJson, + headers: { + accessToken: accessToken, + 'Content-Type': 'application/json' + } + }) + .then(res => res.json()) + .then((response) => { + if (response.success === true && response.conversation.participants.length > 1) { + logger.info(`A conversation starts successfully for user ${userId} by id ${response.conversation._id}`) + successRes(res, 'Conversation started successfully!', response.conversation._id) + } + }) + .catch((err) => { + next(err) + }) + }) + } else { + const error = new myError( + 'There is no supporter!', + 400, + 43, + 'هیچ پشتیبانی ثبت نشده است!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'The user does not have valid ticket account!', + 400, + 45, + 'کاربر دارای حساب تیکتینگ نیست!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) +})) + +ticketRoutes.post('/deleteTickets', +isAuthorized, +// userValidationRules('body', 'ticketIdArray'), +// validate, +tryCatch( (req, res, next) => { + const userId = req.session.userId + const ticketIdArray = req.body.ticketIdArray + connection.then(() => { + dbo.collection('accounts').findOne({ userId: new ObjectID(userId) }) + .then(async (user) => { + if (user && user.userId.toString() === userId) { + const ownerId = user._id + const accessToken = user.accessToken; + let ticketObjectIdArray = [] + await ticketIdArray.map((elemet)=>{ + ticketObjectIdArray.push(new ObjectID(elemet)) + }) + dbo.collection('tickets').updateMany( + { + $and : [{ _id: { $in: ticketObjectIdArray } }, { owner : new ObjectID(ownerId) }] + }, + { + $set:{ deleted : true} + } + ) + .then((result) => { + if(result&&result.matchedCount !=0){ + if(result.modifiedCount>0){ + successRes(res, 'More than 1 tickets deleted!') + } + else { + successRes(res, 'The ticket were deleted before') + } + } + else { + const error = new myError( + 'There is no ticket with your id , and requested ticketid array!', + 400, + 43, + 'تیکتی با اسم شما و همچنین با ایدی ورودی پیدا نشد!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'The user does not have valid ticket account!', + 400, + 45, + 'کاربر دارای حساب تیکتینگ نیست!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) +})) + +ticketRoutes.get('/updateTicketStatus', +isAuthorized, +userValidationRules('query', 'ticketId'), +userValidationRules('query', 'ticketStatus'), +validate, +tryCatch(async (req, res, next) => { + const userId = req.session.userId + const ticketId = req.query.ticketId + const status = req.query.ticketStatus + + connection.then(() => { + dbo.collection('accounts').findOne({ userId: new ObjectID(userId) }) + .then((user) => { + if (user && user.userId.toString() === userId) { + const ownerId = user._id + + dbo.collection('tickets').updateOne({ _id: new ObjectID(ticketId), owner: new ObjectID(ownerId) }, { $set :{ status : Number(status) } }) + .then(async (result) => { + if(result && result.matchedCount !=0) { + if(result.modifiedCount === 1) { + successRes(res, 'The ticket status is changed successfully!') + } else { + successRes(res, 'The ticket status is the same was before!') + } + } else { + const error = new myError( + 'There is no ticket with your id , and requested ticketid!', + 400, + 43, + 'تیکتی با اسم شما و همچنین با ایدی ورودی پیدا نشد!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'The user does not have valid ticket account!', + 400, + 45, + 'کاربر دارای حساب تیکتینگ نیست!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) +})) + + +ticketRoutes.get('/getMessages', +isAuthorized, +tryCatch((req, res, next) => { + const userId = req.session.userId + connection.then(() => { + dbo.collection('accounts').findOne({ userId: userId }) + .then((doc) => { + if (doc && doc.userId.toString() === userId) { + const accessToken = doc.accessToken + fetch(process.env.TICKET_GET_MESSAGES_URL, { + method: 'GET', + headers: { + accessToken: accessToken, + 'Content-Type': 'application/json' + } + }) + .then(res => res.json()) + .then((response) => { + if (response.success === true) { + logger.info(`The messages of user ${userId} is gotten successfully`) + successRes(res, 'The messages is gotten successfully!') + } else { + const err = (response.error && response.error.message) ? response.error.message : '' + logger.warn(`Getting messages for user ${userId} had some problems:` + ' ' + err) + const error = new myError( + 'Error happened during the getting messages!', + 500, + 48, + 'در به دست آوردن پیام ها مشکلی پیش آمده است.', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next (err) + }) + } else { + const error = new myError( + 'The user does not have valid ticket account!', + 400, + 45, + 'کاربر دارای حساب تیکتینگ نیست!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) +})) + +ticketRoutes.post('/register', +//isAuthorized, +tryCatch(async (req, res, next) => { + const userId = req.body.userId + const session = await mongoose.startSession() + connection.then(() => { + dbo.collection('groups').findOne({}, { session }) + .then((group) => { + if (group && group._id ) { + const body1 = { + aUsername: req.body.aUsername, + aPass: req.body.aPass, + aPassConfirm: req.body.aPassConfirm, + aFullname: req.body.aFullname, + userId : req.body.userId, + aTitle: req.body.aTitle, + aGrps: [group._id.toString()], + aRole: process.env.USER_ROLE_ID, + aEmail: req.body.aEmail + } + const body1Json = JSON.stringify(body1) + fetch("http://localhost:8118/api/v1/users/create", { + method: 'POST', + body: body1Json, + headers: { + accessToken: process.env.ACCESS_TOKEN, + 'Content-Type': 'application/json' + } + }) + .then((res) => res.json()) + .then((response) => { + if (response.success === true) { + const supportId = [] + connection.then(() => { + dbo.collection('accounts').find({role : new ObjectID("5fb21707795091261c6d2192")}).toArray() + .then((docs) => { + if (docs && docs .length > 0) { + const docMap = docs.map((doc) => { + supportId.push(doc._id) + }) + Promise.all(docMap) + .then(() => { + session.withTransaction(async () => { + const participants = group.members.concat(supportId) + return User.findOne({ _id: userId }) + .then(async (user) => { + if (user && user._id.toString() === userId.toString()) { + group.members = participants + } else { + const error = new myError( + 'The user does not have valid ticket account!', + 400, + 45, + 'کاربر دارای حساب تیکتینگ نیست!', + 'خطا رخ داد' + ) + throw(error) + } + }) + .catch((err)=>{ + throw(err) + }) + }) + .then(() => { + successRes(res, 'The ticket account is created successfully!') + }) + .catch((err) => { + + logger.error(err) + throw(err) + }) + .finally(() => { + session.endSession() + }) + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'There is no supporter!', + 400, + 43, + 'هیچ پشتیبانی ثبت نشده است!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) + } else { + logger.warn(`Ticket account Could not be created for user with email ${userId}`) + const error = new myError( + 'Error happened during the creating ticket account!', + 500, + 49, + 'در ایجاد تیکت مشکلی پیش آمده است!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) +})) + + +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// POST ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// + +ticketRoutes.post('/createTicket', + isAuthorized, + userValidationRules('body', 'ticketSubject'), + userValidationRules('body', 'ticketType'), + userValidationRules('body', 'ticketIssue'), + userValidationRules('body', 'ticketPriority'), + validate, + tryCatch((req, res, next) => { + const userId = req.session.userId + const subject = req.body.ticketSubject + const type = req.body.ticketType + const issue = req.body.ticketIssue + const priority = req.body.ticketPriority + let priorityId + let typeId + let groupId + let accessToken + let objectId + const findPriority = () => { + return dbo.collection('priorities').findOne({ name: priority }) + .then((priorityDoc) => { + if (priorityDoc && priorityDoc.name === priority) { + priorityId = priorityDoc._id + } else { + const error = new myError( + 'Priority is not valid!', + 400, + 57, + 'اولویت دارای اعتبار نیست!', + 'خطا رخ داد' + ) + throw error + } + }) + .catch((err) => { + throw(err) + }) + } + const findType = () => { + return dbo.collection('tickettypes').findOne({ name: type }) + .then((typ) => { + if (typ && typ.name === type) { + return typeId = typ._id + } else { + const error = new myError( + 'Type is not valid!', + 400, + 57, + 'اولویت دارای اعتبار نیست!', + 'خطا رخ داد' + ) + throw error + } + }) + .catch((err) => { + throw(err) + }) + } + const findGroup = () => { + return dbo.collection('groups').findOne({ name :"Exchange" }) + .then((group) => { + if (group && group.name === "Exchange") { + return groupId = group._id + } else { + const error = new myError( + 'Group is not valid!', + 400, + 57, + 'گروه دارای اعتبار نیست!', + 'خطا رخ داد' + ) + throw error + } + }) + .catch((err) => { + throw(err) + }) + } + + const findAccount = () => { + return dbo.collection('accounts').findOne({ userId: new ObjectID(userId) }) + .then((account) => { + console.log(account) + if (account && account.userId.toString() === userId) { + accessToken = account.accessToken + return objectId = account._id + } else { + const error = new myError( + 'user address is not valid!', + 400, + 12, + 'کاربر دارای حساب تیکتینگ نیست', + 'خطا رخ داد' + ) + throw error + } + }) + .catch((err) => { + throw err + }) + } + + connection.then(() => { + return Promise.all([findAccount(), findGroup(), findPriority(), findType()]) + .then(() => { + const body = { + subject: subject, + issue: issue, + owner: objectId, + group: groupId, + type: typeId, + priority: priorityId, + tags: [] + } + const bodyJson = JSON.stringify(body) + console.log('bodyJson: ', bodyJson) + fetch(process.env.TICKET_CREATE_TICKET_URL, { + method: 'POST', + body: bodyJson, + headers: { + accessToken: accessToken, + 'Content-Type': 'application/json' + } + }) + .then((res) => res.json()) + .then((response) => { + if (response.success === true) { + logger.info(`The ticket ${response.ticket._id} for user ${userId} is created successfully`) + successRes(res, 'Ticket created successfully!') + } else { + logger.error('Error happened during creating ticket account!' + ' ' + response.body) + const error = new myError( + 'Error happened during the creating ticket account!', + 500, + 49, + 'در ایجاد تیکت مشکلی پیش آمده است!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) + })) + +ticketRoutes.post('/addCommentToTicket', + isAuthorized, + userValidationRules('body', 'ticketId'), + userValidationRules('body', 'ticketComment'), + validate, + tryCatch((req, res, next) => { + const userId = req.session.userId + const ticketId = req.body.ticketId + const comment = req.body.ticketComment + let canAddComment = false + let findRole = () => { + return null + } + connection.then(() => { + dbo.collection('accounts').findOne({ userId: new ObjectID(userId) }) + .then((doc) => { + if (doc && doc.userId.toString() === userId.toString()) { + dbo.collection('tickets').findOne({ _id: new ObjectID(ticketId) }) + .then((theTicket) => { + if (theTicket && theTicket._id.toString() === ticketId) { + console.log('theTicket.owner: ', theTicket.owner) + if(theTicket.owner.toString() === doc._id.toString()) { + canAddComment = true + } else { + findRole = () => { + return dbo.collection('roles').findOne({ _id: new ObjectID(doc.roleId) }) + .then((theRole) => { + if (theRole && theRole.name !== 'User') { + canAddComment = true + } + }) + .catch((err) => { + throw(err) + }) + } + } + Promise.all([findRole()]) + .then(() => { + if (canAddComment) { + const accessToken = doc.accessToken + const body = { + _id: ticketId, + ticketId : false, + note : false, + owner: doc._id, + comment: comment + } + const bodyJson = JSON.stringify(body) + fetch(process.env.TICKET_ADD_COMMENT_URL, { + method: 'POST', + body: bodyJson, + headers: { + accessToken: accessToken, + 'Content-Type': 'application/json' + } + }) + .then((res) => res.json()) + .then((response) => { + if (response.success === true) { + logger.info(`A comment for ticket ${response.ticket._id} for user ${userId} is added successfully`) + successRes(res, 'Comment added successfully!') + } else { + logger.warn(`Creating ticket for user ${userId} had some problems:` + ' ' + response.error.message) + const error = new myError( + 'Error happened during the creating ticket account!', + 500, + 49, + 'در ایجاد تیکت مشکلی پیش آمده است!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'The user does not have authority!', + 400, + 62, + 'شما مجاز به انجام چنین کاری نیستید!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'ticketId is not valid!', + 400, + 62, + 'چنین تیکتی در سیستم ثبت نشده است!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'OwnerId is not valid!', + 400, + 62, + 'کاربر دارای حساب تیکتینگ نیست!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) + })) + +ticketRoutes.post('/sendMessages', + isAuthorized, + // userValidationRules('body', 'message'), + // validate, + tryCatch((req, res, next) => { + const userId = req.session.userId + const message = req.body.message + connection.then(() => { + dbo.collection('accounts').findOne({ userId: userId }) + .then((doc) => { + if (doc && doc.userId.toString() === userId) { + const ownerId = doc._id + const accessToken = doc.accessToken + dbo.collection('conversations').findOne({ 'userMeta.userId': ownerId }) + .then((conversation) => { + const conversationId = conversation._id + const body = { + owner: ownerId, + cId: conversationId, + body: message + } + const bodyJson = JSON.stringify(body) + fetch(process.env.TICKET_SEND_MESSAGE_URL, { + method: 'POST', + body: bodyJson, + headers: { + accessToken: accessToken, + 'Content-Type': 'application/json' + } + }) + .then((res) => res.json()) + .then((response) => { + if (response.success === true) { + logger.info(`The message for user ${userId} is sent successfully`) + successRes(res, 'The message is sent successfully!') + } else { + const err = (response.error && response.error.message) ? response.error.message : '' + logger.warn(`Sending message for user ${userId} had some problems:` + ' ' + err) + const error = new myError( + 'Error happened during the creating ticket account!', + 500, + 49, + 'در ایجاد تیکت مشکلی پیش آمده است!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'The user does not have valid ticket account!', + 400, + 45, + 'کاربر دارای حساب تیکتینگ نیست!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next(err) + }) + })) + diff --git a/server/routes/user.js b/server/routes/user.js new file mode 100755 index 0000000..9d8ff95 --- /dev/null +++ b/server/routes/user.js @@ -0,0 +1,1101 @@ +"use strict"; +var __assign = (this && this.__assign) || function () { + __assign = Object.assign || function(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) + t[p] = s[p]; + } + return t; + }; + return __assign.apply(this, arguments); +}; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.userRoutes = void 0; +var express = require("express"); +var _ = require("lodash"); +var mongodb_1 = require("mongodb"); +var uuid_1 = require("uuid"); +var mongoose = require("mongoose"); +var response_1 = require("../middlewares/response"); +var auth_1 = require("../middlewares/auth"); +var validation_1 = require("../middlewares/validation"); +var tryCatch_1 = require("../middlewares/tryCatch"); +var user_1 = require("../db/user"); +var currencies_1 = require("../db/currencies"); +var myError_1 = require("../api/myError"); +var acceptedOffers_1 = require("../db/acceptedOffers"); +var ActiveOffers_1 = require("../db/ActiveOffers"); +var withdrawOffers_1 = require("../db/withdrawOffers"); +var getPrice_1 = require("../db/getPrice"); +var redis = require("../api/redis"); +var socket_1 = require("../api/socket"); +var onlineLoginUsers = socket_1.getonlineLoginUsers(); +exports.userRoutes = express.Router(); +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// GET ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +exports.userRoutes.get('/getUserWallet', auth_1.isAuthorized, tryCatch_1["default"](function (req, res, next) { + var userId = req.session.userId; + var rialPrice; + return redis.hashget("dollarPrice") + .then(function (rial) { + rialPrice = Number(rial / 10); + user_1.User.findOne({ _id: userId }) + .then(function (user) { + if (user && user._id.toString() === userId.toString()) { + var walletArray_1 = []; + var userWallet = user.wallet; + var totalAsstetsPrice_1 = 0; + var totalAsstetsPriceRial = 0; + var status_1 = true; + var walletMap = userWallet.map(function (wall) { + return redis.hashGetAll(wall.currency.toString()) + .then(function (wallCurr) { + if (wallCurr) { + var tempWalletArray_1 = { + currencyName: wallCurr.currencyName, + persianName: wallCurr.per_name, + shortName: wallCurr.ab_name, + icon: wallCurr.icon, + _id: wall.currency.toString(), + value: wall.value, + commitment: wall.commitment, + totalPrice: 0, + totalRialPrice: 0 + }; + return redis.hashGetAll(wallCurr.ab_name + '-g') + .then(function (rate) { + if (rate) { + tempWalletArray_1.totalPrice = wall.value * Number(rate.current); + totalAsstetsPrice_1 += tempWalletArray_1.totalPrice; + if (rialPrice) { + tempWalletArray_1.totalRialPrice = Math.ceil(Number(tempWalletArray_1.totalPrice) * rialPrice); + walletArray_1.push(tempWalletArray_1); + } + else { + walletArray_1["totalRialPrice"] = -1; + walletArray_1.push(tempWalletArray_1); + } + } + else { + status_1 = false; + tempWalletArray_1['totalPrice'] = -1; + walletArray_1.push(tempWalletArray_1); + } + })["catch"](function (err) { + throw (err); + }); + } + else { + var error = new myError_1["default"]('currency not found!', 400, 5, 'ارز پیدا نشد.!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + throw (err); + }); + }); + Promise.all(walletMap) + .then(function () { + response_1["default"](res, 'user wallet data:', walletArray_1); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('user not found!', 400, 5, 'کاربر مربوطه پیدا نشد!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); +})); +exports.userRoutes.get('/getUserAcceptedOffers', auth_1.isAuthorized, validation_1.userValidationRules('query', 'kind'), validation_1.validate, tryCatch_1["default"](function (req, res, next) { + var kind = req.query.kind; + var userId = req.session.userId; + var query = {}; + if (kind === "1") { + query = { creator: userId }; + } + else if (kind === "2") { + query = { acceptor: userId }; + } + acceptedOffers_1.Accepted_Offers.find(query) + .then(function (offers) { + if (offers && Array.isArray(offers) && offers.length > 0) { + var dataArray_1 = []; + currencies_1.Currencies.find() + .then(function (curs) { + offers.forEach(function (off) { + var givenCur = _.find(curs, function (i) { return i._id.toString() === off.curGivenId.toString(); }); + var takenCur = _.find(curs, function (i) { return i._id.toString() === off.curTakenId.toString(); }); + if (givenCur && takenCur) { + dataArray_1.push({ + giveCurname: givenCur.currencyName, + //giveCurValue: off.curGivenVal, + //givenCurPersianName: givenCur.per_name, + //givenCurShortName: givenCur.ab_name, + //givenCurIcon: givenCur.icon, + takenCurname: takenCur.currencyName, + //takenCurValue: off.curTakenVal, + //takenCurpersianName: takenCur.per_name, + //takenCurShortName: takenCur.ab_name, + //takenCurIcon: takenCur.icon, + //createDate: off.offeredDate, + acceptedDate: off.created_at + }); + } + else { + return; + } + }); + var orderedDataArray = _.orderBy(dataArray_1, function (_a) { + var acceptedDate = _a.acceptedDate; + return acceptedDate; + }, ['asc']); + response_1["default"](res, 'fdasdf', orderedDataArray); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('there is no offer', 400, 5, 'سفارشی یافت نشد.!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.userRoutes.get('/getUserActiveOffers', auth_1.isAuthorized, tryCatch_1["default"](function (req, res, next) { return __awaiter(void 0, void 0, void 0, function () { + var userId, curId, query, rialObj; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + console.log(req.session); + userId = req.session.userId; + curId = req.query.curIdOp; + query = []; + query.push.apply(query, [{ userId: userId }, { expDate: { $gt: Date.now() } }]); + if (!mongodb_1.ObjectID.isValid(curId)) return [3 /*break*/, 2]; + return [4 /*yield*/, currencies_1.Currencies.findOne({ name: 'RIAL' }) + .then(function (rial) { + if (rial && rial.name === 'RIAL') { + rialObj = rial; + query.push({ $or: [ + { $and: [{ curGivenId: curId }, { curTakenId: rial._id }] }, + { $and: [{ curTakenId: curId }, { curGivenId: rial._id }] } + ] }); + } + })["catch"](function (err) { + console.log(err); + })]; + case 1: + _a.sent(); + _a.label = 2; + case 2: + ActiveOffers_1.Active_Offers.find({ $and: query }) + .then(function (offers) { + if (offers && Array.isArray(offers) && offers.length > 0) { + var dataArray_2 = []; + if (mongodb_1.ObjectID.isValid(curId)) { + redis.hashGetAll(curId.toString()) + .then(function (curObj) { + var offersMap = offers.map(function (offer) { + if (offer.curTakenId.toString() === rialObj._id.toString()) { + dataArray_2.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: offer.curGivenVal, + Gicon: curObj.icon, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curTakenVal, + Ticon: rialObj.icon, + txType: 'sell', + createDate: offer.created_at, + expireDate: offer.expDate, + offerId: offer.offerId + }); + } + else { + dataArray_2.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: offer.curTakenVal, + Gicon: curObj.icon, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curGivenVal, + Ticon: rialObj.icon, + txType: 'buy', + createDate: offer.created_at, + expireDate: offer.expDate, + offerId: offer.offerId + }); + } + }); + Promise.all(offersMap) + .then(function () { + var orderedDataArray = _.orderBy(dataArray_2, function (_a) { + var createDate = _a.createDate; + return createDate; + }, ['desc']); + response_1["default"](res, 'fdasdf', orderedDataArray); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + console.log(err); + }); + } + else { + currencies_1.Currencies.find() + .then(function (curs) { + offers.forEach(function (off) { + var givenCur = _.find(curs, function (i) { return i._id.toString() === off.curGivenId.toString(); }); + var takenCur = _.find(curs, function (i) { return i._id.toString() === off.curTakenId.toString(); }); + if (givenCur && takenCur) { + dataArray_2.push({ + //giveCurValue :off.curGivenVal, + giveCurname: givenCur.currencyName, + //givenCurPersianName : givenCur.per_name, + //givenCurShortName : givenCur.ab_name, + //givenCurIcon : givenCur.icon, + takenCurname: takenCur.currencyName, + //takenCurValue : off.curTakenVal, + //takenCurpersianName: takenCur.per_name, + //takenCurShortName : takenCur.ab_name, + //takenCurIcon : takenCur.icon, + createDate: off.created_at, + expireDate: off.expiredDate + }); + } + else { + return; + } + }); + var orderedDataArray = _.orderBy(dataArray_2, function (_a) { + var createDate = _a.createDate; + return createDate; + }, ['desc']); + response_1["default"](res, 'fdasdf', orderedDataArray); + })["catch"](function (err) { + next(err); + }); + } + } + else { + response_1["default"](res, 'fdasdf', []); + } + })["catch"](function (err) { + next(err); + }); + return [2 /*return*/]; + } + }); +}); })); +exports.userRoutes.get('/getUserWithdrawnOffers', auth_1.isAuthorized, tryCatch_1["default"](function (req, res, next) { + var userId = req.session.userId; + withdrawOffers_1.Withdraw_Offers.findOne({ userId: userId }) + .then(function (theDoc) { + if (theDoc && theDoc.userId.toString() === userId) { + if (theDoc.offers && Array.isArray(theDoc.offers) && theDoc.offers.length > 0) { + var modifiedOffers = _.orderBy(theDoc.offers, ['created_at', ['desc']]); + response_1["default"](res, '', modifiedOffers); + } + else { + var error = new myError_1["default"]('the user does not have any withdrawnOffers', 400, 44, 'کاربر هیچ پیشنهاد بازپسگیری شده ندارد.', 'خطا رخ داد'); + next(error); + } + } + else { + var error = new myError_1["default"]('the user does not have any withdrawnOffers', 400, 44, 'کاربر هیچ پیشنهاد بازپسگیری شده ندارد.', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.userRoutes.get('/getOfferById', auth_1.isAuthorized, validation_1.userValidationRules('query', 'type'), validation_1.userValidationRules('query', 'offerId'), validation_1.validate, tryCatch_1["default"](function (req, res, next) { + var userId = req.session.userId; + var offerId = req.query.offerId; + var type = req.query.type; + var data; + currencies_1.Currencies.find() + .then(function (currecies) { + if (type === "1") { + ActiveOffers_1.Active_Offers.findOne({ $and: [{ offerId: offerId }, { expDate: { $gt: Date.now() } }] }) + .then((function (theOffer) { + if (theOffer && theOffer.offerId === offerId) { + if (theOffer.userId.toString() === userId) { + var givenCur = _.find(currecies, function (i) { return i._id.toString() === theOffer.curGivenId.toString(); }); + var takenCur = _.find(currecies, function (i) { return i._id.toString() === theOffer.curTakenId.toString(); }); + data = { + givenCurName: givenCur.name, + takenCurName: takenCur.name, + offerCreatedDate: theOffer.created_at, + offerExpireDate: theOffer.expDate + }; + response_1["default"](res, '', data); + } + else { + var error = new myError_1["default"]('you do not have pemissions', 400, 5, 'شما دسترسی ندارید!', 'خطا رخ داد'); + next(error); + } + } + else { + var error = new myError_1["default"]('there is no oofer with given offerId in Acive offers', 400, 5, 'پیشنهاد یافت نشد!', 'خطا رخ داد'); + next(error); + } + }))["catch"](function (err) { + next(err); + }); + } + else if (type === "2") { + acceptedOffers_1.Accepted_Offers.findOne({ offerId: offerId }) + .then((function (theOffer) { + if (theOffer && theOffer.offerId === offerId) { + if (theOffer.acceptor.toString() === userId || theOffer.creator.toString() === userId) { + var givenCur = _.find(currecies, function (i) { return i._id.toString() === theOffer.curGivenId.toString(); }); + var takenCur = _.find(currecies, function (i) { return i._id.toString() === theOffer.curTakenId.toString(); }); + data = { + givenCurName: givenCur.name, + takenCurName: takenCur.name, + offerCreatedDate: theOffer.created_at, + offerAcceptedDate: theOffer.acceptedDate + }; + response_1["default"](res, '', data); + } + else { + var error = new myError_1["default"]('you do not have pemissions', 400, 5, 'شما دسترسی ندارید!', 'خطا رخ داد'); + next(error); + } + } + else { + var error = new myError_1["default"]('there is no oofer with given offerId in Accepted offers', 400, 5, 'پیشنهاد یافت نشد!', 'خطا رخ داد'); + next(error); + } + }))["catch"](function (err) { + next(err); + }); + } + else if (type === "3") { + withdrawOffers_1.Withdraw_Offers.findOne({ 'offers.offerId': offerId }) + .then(function (theDoc) { + if (theDoc) { + if (theDoc.userId.toString() === userId) { + var theOffer_1 = _.find(theDoc.offers, function (i) { return i.offerId === offerId; }); + var givenCur = _.find(currecies, function (i) { return i._id.toString() === theOffer_1.curGivenId.toString(); }); + var takenCur = _.find(currecies, function (i) { return i._id.toString() === theOffer_1.curTakenId.toString(); }); + data = { + givenCurName: givenCur.name, + takenCurName: takenCur.name, + offerCreatedDate: theOffer_1.offeredDate, + offerwhitdrawDate: theOffer_1.created_at + }; + response_1["default"](res, '', data); + } + else { + var error = new myError_1["default"]('you do not have pemissions', 400, 5, 'شما دسترسی ندارید!', 'خطا رخ داد'); + next(error); + } + } + else { + var error = new myError_1["default"]('there is no oofer with given offerId in withdraw offers', 400, 5, 'پیشنهاد یافت نشد!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.userRoutes.get('/acceptOffer', auth_1.isAuthorized, validation_1.userValidationRules('query', 'offerId'), validation_1.validate, tryCatch_1["default"](function (req, res, next) { return __awaiter(void 0, void 0, void 0, function () { + var acceptorId, offerId, session; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + acceptorId = req.session.userId; + offerId = req.query.offerId; + return [4 /*yield*/, mongoose.startSession()]; + case 1: + session = _a.sent(); + ActiveOffers_1.Active_Offers.findOne({ offerId: offerId }) + .then(function (offer) { + if (offer && offer.offerId === offerId) { + var creatorId_1 = offer.userId; + if (creatorId_1.toString() !== acceptorId.toString()) { + var exp = new Date(offer.expDate).getTime(); + if (exp >= Date.now()) { + console.log(exp); + console.log(offer.expDate); + session.withTransaction(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + return [2 /*return*/, user_1.User.findOne({ _id: acceptorId }).session(session) + .then(function (acceptor) { + var takenObjInAccWal = _.find(acceptor.wallet, function (e) { return e.currency.toString() === offer.curTakenId.toString(); }); + if (takenObjInAccWal && takenObjInAccWal.value >= offer.curTakenVal) { + return user_1.User.findOne({ _id: creatorId_1 }).session(session) + .then(function (creator) { return __awaiter(void 0, void 0, void 0, function () { + var givenObjInCreWal, takenObjInCreWal, currencyObj, giveObjInAccWal, currencyObj, bodyAccOffer_1, error; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!(creator && creator._id.toString() === creatorId_1.toString())) return [3 /*break*/, 6]; + givenObjInCreWal = _.find(creator.wallet, function (e) { return e.currency.toString() === offer.curGivenId.toString(); }); + if (!givenObjInCreWal) return [3 /*break*/, 5]; + // take from creator and give to acceptor + givenObjInCreWal.commitment -= Number(offer.curGivenVal); + takenObjInCreWal = _.find(creator.wallet, function (i) { return i.currency.toString() === offer.curTakenId.toString(); }); + if (takenObjInCreWal) { + takenObjInCreWal.value += offer.curTakenVal; + } + else { + currencyObj = { + currency: offer.curTakenId, + value: offer.curTakenVal + }; + creator.wallet.push(currencyObj); + } + takenObjInAccWal.value -= offer.curTakenVal; + giveObjInAccWal = _.find(acceptor.wallet, function (e) { return e.currency.toString() === offer.curGivenId.toString(); }); + if (giveObjInAccWal) { + giveObjInAccWal.value += offer.curGivenVal; + } + else { + currencyObj = { + currency: offer.curGivenId, + value: offer.curGivenVal + }; + acceptor.wallet.push(currencyObj); + } + bodyAccOffer_1 = { + acceptor: acceptorId, + creator: creatorId_1, + offerId: offer.offerId, + curGivenId: offer.curGivenId, + curGivenVal: offer.curGivenVal, + curTakenId: offer.curTakenId, + curTakenVal: offer.curTakenVal, + offeredDate: offer.created_at, + expiredDate: offer.expDate + }; + currencies_1.Currencies.findOne({ _id: offer.curGivenId }) + .then(function (currency) { + var currentPrice = bodyAccOffer_1.curTakenVal; + var min; + var max; + redis.hashGetAll('L_' + currency.ab_name) + .then(function (redisGetObj) { + if (redisGetObj != null) { + if (currentPrice < redisGetObj['min']) { + min = currentPrice; + } + else { + min = redisGetObj['min']; + if (currentPrice > redisGetObj['max']) { + max = currentPrice; + } + else { + max = redisGetObj['max']; + } + } + redis.hashHMset('L_' + currency.ab_name, { + currentPrice: currentPrice, + min: min, + max: max + }); + } + else { + redis.hashHMset('L_' + currency.ab_name, { + currentPrice: currentPrice, + min: currentPrice, + max: currentPrice + }); + } + })["catch"](function (err) { + throw (err); + }); + })["catch"](function (err) { + throw (err); + }); + return [4 /*yield*/, acceptedOffers_1.Accepted_Offers.create([bodyAccOffer_1], { session: session })]; + case 1: + _a.sent(); + return [4 /*yield*/, creator.save()]; + case 2: + _a.sent(); + return [4 /*yield*/, acceptor.save()]; + case 3: + _a.sent(); + return [4 /*yield*/, offer.remove()]; + case 4: + _a.sent(); + return [3 /*break*/, 6]; + case 5: + error = new myError_1["default"]('creator wallet does not have given object', 400, 5, 'در کیف پول فرشنده ارز مورد نظر پیدا نشد', 'خطا رخ داد'); + throw (error); + case 6: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw (err); + }); + } + else { + var error = new myError_1["default"]('There is no enough currency in acceptor wallet or acceptor does not have the currency', 400, 5, 'ارز مورد در کیف پول خریدار نیست یا موجودی آن کافی نیست', 'خطا رخ داد'); + throw (error); + } + })["catch"](function (err) { + throw (err); + })]; + }); + }); }) + .then(function () { + response_1["default"](res, 'Offer accepted succesfully ', offerId, {}); + })["catch"](function (err) { + next(err); + })["finally"](function () { + session.endSession(); + }); + } + else { + var error = new myError_1["default"]('offer is expired', 400, 5, 'پیشنهاد منقضی شده است.', 'خطا رخ داد'); + next(error); + } + } + else { + var error = new myError_1["default"]('acceptor and creator must be different', 400, 5, 'فروشنده و خریدار باید متفاوت باشند.', 'خطا رخ داد'); + next(error); + } + } + else { + var error = new myError_1["default"]('There is no offer with the given offer Id', 400, 5, 'شناسه پیشنهادی یافت نشد.', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + return [2 /*return*/]; + } + }); +}); })); +exports.userRoutes.post('/withdrawOffer', auth_1.isAuthorized, +// userValidationRules('query','offerId'), +// validate, +tryCatch_1["default"](function (req, res, next) { return __awaiter(void 0, void 0, void 0, function () { + var userId, offerIds, nowithOffer, session; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + userId = req.session.userId; + offerIds = req.body.offerIds; + nowithOffer = false; + console.log('offerIds: ', offerIds); + console.log('userId: ', userId); + return [4 /*yield*/, mongoose.startSession()]; + case 1: + session = _a.sent(); + session.withTransaction(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + return [2 /*return*/, user_1.User.findOne({ _id: userId }).session(session) + .then(function (user) { + return ActiveOffers_1.Active_Offers.find({ $and: [{ offerId: { $in: offerIds } }, { userId: userId }] }).session(session) + .then(function (offers) { + if (offers && offers.length > 0) { + return withdrawOffers_1.Withdraw_Offers.findOne({ userId: userId }).session(session) + .then(function (withOffer) { return __awaiter(void 0, void 0, void 0, function () { + var offersMap; + return __generator(this, function (_a) { + if (!withOffer) { + nowithOffer = true; + withOffer = { + userId: userId, + offers: [] + }; + } + offersMap = offers.map(function (offer, i) { return __awaiter(void 0, void 0, void 0, function () { + var bodyWithOffer, userWalCurGivenObj, error; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + bodyWithOffer = { + userId: userId, + offers: { + offerId: offer.offerId, + curGivenId: offer.curGivenId, + curGivenVal: offer.curGivenVal, + curTakenId: offer.curTakenId, + curTakenVal: offer.curTakenVal, + offeredDate: offer.created_at, + expiredDate: offer.expDate, + withdrawDate: Date.now() + } + }; + userWalCurGivenObj = _.find(user.wallet, function (i) { return i.currency.toString() === offer.curGivenId.toString(); }); + if (!(userWalCurGivenObj && userWalCurGivenObj.commitment >= Number(offer.curGivenVal))) return [3 /*break*/, 2]; + userWalCurGivenObj.value += offer.curGivenVal; + userWalCurGivenObj.commitment -= Number(offer.curGivenVal); + withOffer.offers.push(bodyWithOffer.offers); + console.log('i: ', i); + return [4 /*yield*/, offer.remove()]; + case 1: + _a.sent(); + return [3 /*break*/, 3]; + case 2: + error = new myError_1["default"]('user does not have the given currency in his/her wallet', 400, 5, 'کاربر ارز مورد نظر را در کیف پول ندارد.', 'خطا رخ داد'); + throw (error); + case 3: return [2 /*return*/]; + } + }); + }); }); + return [2 /*return*/, Promise.all(offersMap) + .then(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!nowithOffer) return [3 /*break*/, 2]; + return [4 /*yield*/, withdrawOffers_1.Withdraw_Offers.create([withOffer], { session: session })]; + case 1: + _a.sent(); + return [3 /*break*/, 4]; + case 2: return [4 /*yield*/, withOffer.save()]; + case 3: + _a.sent(); + _a.label = 4; + case 4: return [4 /*yield*/, user.save()]; + case 5: + _a.sent(); + return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw err; + })]; + }); + }); })["catch"](function (err) { + throw (err); + }); + } + else { + var error = new myError_1["default"]('There is no offer with the given Id', 400, 5, 'شناسه پیشنهادی یافت نشد.', 'خطا رخ داد'); + throw (error); + } + })["catch"](function (err) { + throw (err); + }); + })["catch"](function (err) { + throw (err); + })]; + }); + }); }) + .then(function () { + response_1["default"](res, 'Offer removed Successfully. ', true, {}); + })["catch"](function (err) { + console.log('error: ', err); + next(err); + })["finally"](function () { + session.endSession(); + }); + return [2 /*return*/]; + } + }); +}); })); +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// POST ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +exports.userRoutes.post('/createOffer', auth_1.isAuthorized, validation_1.userValidationRules('body', 'curGivenId'), validation_1.userValidationRules('body', 'curGivenVal'), validation_1.userValidationRules('body', 'curTakenId'), validation_1.userValidationRules('body', 'curTakenVal'), +//userValidationRules('body', 'expDate'), +validation_1.validate, tryCatch_1["default"](function (req, res, next) { return __awaiter(void 0, void 0, void 0, function () { + var userId, curGivenId, curGivenVal, curTakenId, curTakenVal, expDate, offerId, bodyOffer, exp, session, err, err; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + userId = req.session.userId; + curGivenId = req.body.curGivenId; + curGivenVal = req.body.curGivenVal; + curTakenId = req.body.curTakenId; + curTakenVal = req.body.curTakenVal; + expDate = req.body.expDate; + exp = new Date(expDate); + return [4 /*yield*/, mongoose.startSession()]; + case 1: + session = _a.sent(); + if (exp.getTime() >= Date.now()) { + if (curGivenId != curTakenId) { + currencies_1.Currencies.findOne({ _id: curGivenId }) + .then(function (curGivenObj) { + currencies_1.Currencies.findOne({ _id: curTakenId }) + .then(function (curTakenObj) { + if (curGivenObj && curTakenObj && curGivenObj._id.toString() === curGivenId.toString() && + curTakenObj._id.toString() === curTakenId.toString()) { + session.withTransaction(function () { + // console.log("sasan") + return user_1.User.findOne({ _id: userId }).session(session) + .then(function (user) { return __awaiter(void 0, void 0, void 0, function () { + var userWallet, error, error, err; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!(user && user._id.toString() === userId.toString())) return [3 /*break*/, 7]; + userWallet = _.find(user.wallet, function (e) { return e.currency.toString() === curGivenId.toString(); }) // object of specific currency in user's wallet + ; + if (!userWallet) return [3 /*break*/, 5]; + if (!(userWallet.value >= curGivenVal)) return [3 /*break*/, 3]; + offerId = uuid_1.v4(); + bodyOffer = { + userId: userId, + offerId: offerId, + curGivenId: curGivenId, + curGivenVal: curGivenVal, + curTakenId: curTakenId, + curTakenVal: curTakenVal, + expDate: expDate, + rank: user.rank + }; + userWallet.value = userWallet.value - curGivenVal; + userWallet.commitment = userWallet.commitment + Number(curGivenVal); + return [4 /*yield*/, ActiveOffers_1.Active_Offers.create([bodyOffer], { session: session })]; + case 1: + _a.sent(); + return [4 /*yield*/, user.save()]; + case 2: + _a.sent(); + return [3 /*break*/, 4]; + case 3: + error = new myError_1["default"]('Given: user has not enough credit in his/her wallet', 400, 5, 'کاربر مقدار کافی از ارز برای پیشنهاد داده شده را ندارد.', 'خطا رخ داد'); + throw (error); + case 4: return [3 /*break*/, 6]; + case 5: + error = new myError_1["default"]('User does not have this kind of currency', 400, 5, 'کیف پول کاربر ارز پیشنهادی را ندارد.', 'خطا رخ داد'); + throw (error); + case 6: return [3 /*break*/, 8]; + case 7: + err = new myError_1["default"]('userId not found', 400, 5, 'خطا رخ داد', 'کاربری با این شناسه کاربری پیدا نشد.'); + throw (err); + case 8: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw (err); + }); + }) + .then(function () { + response_1["default"](res, 'Offer created succesfully ', offerId, {}); + var modifiedBodyOffer = { + offerId: bodyOffer.offerId, + curGivenId: bodyOffer.curGivenId, + curGivenVal: bodyOffer.curGivenVal, + curTakenId: bodyOffer.curTakenId, + curTakenVal: bodyOffer.curTakenVal, + expDate: bodyOffer.expDate + }; + redis.hashSetMembers(userId) + .then(function (result) { + console.log('result: ', result); + }); + onlineLoginUsers.emit('new_offer', modifiedBodyOffer); + })["catch"](function (err) { + console.log('error: ', err); + next(err); + })["finally"](function () { + session.endSession(); + }); + } + else { + var err = new myError_1["default"]('curTakenId error', 400, 5, 'ارز وارد شده صحیح نیست', 'خطا رخ داد'); + next(err); + } + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); + } + else { + err = new myError_1["default"]('curGivenId must be different from curTakenId', 400, 5, 'ارز ها برای تبادل باید متفاوت باشند.', 'خطا رخ داد'); + next(err); + } + } + else { + err = new myError_1["default"]('expire date must be in the future(not before creating offer date)', 400, 5, 'تاریخ انقضای پیشنهاد باید بعد از ایجاد پیشنهاد باشد.', 'خطا رخ داد'); + next(err); + } + return [2 /*return*/]; + } + }); +}); })); +exports.userRoutes.post('/getPrice', auth_1.isAuthorized, validation_1.userValidationRules('body', 'currency'), validation_1.userValidationRules('body', 'quantity'), validation_1.validate, tryCatch_1["default"](function (req, res, next) { + var userId = req.session.userId; + var currency = req.body.currency; + var quantity = req.body.quantity; + user_1.User.findOne({ _id: userId }) + .then(function (user) { + if (user && user._id.toString() === userId) { + getPrice_1.GetPrice.findOne({ $and: [{ currency: currency }, { userId: user._id }] }) + .then(function (doc) { return __awaiter(void 0, void 0, void 0, function () { + var curRialPrice, bodyPrice, newGetPrice, newGetPrice; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: return [4 /*yield*/, redis.getCurrentPrice(currency)]; + case 1: + curRialPrice = _a.sent(); + bodyPrice = { + currency: currency, + userId: user._id, + quantity: quantity, + rialPricePerUnit: curRialPrice + }; + if (doc) { + doc.remove(); + newGetPrice = new getPrice_1.GetPrice(__assign({}, bodyPrice)); + newGetPrice.save() + .then(function () { + response_1["default"](res, 'old getPrice doc removed and a new one created', curRialPrice, {}); + })["catch"](function (err) { + next(err); + }); + } + else { + newGetPrice = new getPrice_1.GetPrice(__assign({}, bodyPrice)); + newGetPrice.save() + .then(function () { + response_1["default"](res, 'getPrice doc created', curRialPrice, {}); + })["catch"](function (err) { + next(err); + }); + } + return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('user not found', 400, 5, 'کاربر پیدا نشد', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.userRoutes.post('/addCurrencyValue', auth_1.isAuthorized, validation_1.userValidationRules('body', 'currencyId'), validation_1.userValidationRules('body', 'currencyValue'), validation_1.validate, tryCatch_1["default"](function (req, res, next) { + var currency = req.body.currencyId; + var value = Number(req.body.currencyValue); + console.log("req.body.currencyValue is type of ", typeof (req.body.currencyValue)); + var userId = req.session.userId; + currencies_1.Currencies.findOne({ _id: currency }) + .then(function (cur) { + if (cur && cur._id.toString() === currency) { + user_1.User.findOne({ _id: userId }) + .then(function (user) { + if (user && user._id.toString() === userId) { + var wall = _.find(user.wallet, function (i) { return i.currency.toString() === currency.toString(); }); + if (wall) { + console.log("wallet value is type of ", typeof (wall.value)); + console.log(" value is type of ", typeof (value)); + wall.value += value; + } + else { + user.wallet.push({ currency: cur._id, value: value }); + } + user.save() + .then(function () { + response_1["default"](res, "value added successfully"); + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('user not found!', 400, 5, 'کاربر مربوطه پیدا نشد!', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('currency not found!', 400, 5, 'ارز ها برای تبادل باید متفاوت باشند.', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.userRoutes.post('/transferCuurency', auth_1.isAuthorized, validation_1.userValidationRules('body', 'currencyId'), validation_1.userValidationRules('body', 'currencyValue'), validation_1.userValidationRules('body', 'receiverUsername'), validation_1.validate, tryCatch_1["default"](function (req, res, next) { return __awaiter(void 0, void 0, void 0, function () { + var currency, value, receiverUsername, query, userId, session; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + currency = req.body.currencyId; + value = req.body.currencyValue; + receiverUsername = req.body.receiverUsername; + userId = req.session.userId; + return [4 /*yield*/, mongoose.startSession()]; + case 1: + session = _a.sent(); + currencies_1.Currencies.findOne({ _id: currency }) + .then(function (curr) { + if (curr && curr._id.toString() === currency) { + session.withTransaction(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + return [2 /*return*/, user_1.User.findOne({ _id: userId }).session(session) + .then(function (sender) { + if (sender && sender._id.toString() === userId) { + var theCur = _.find(sender.wallet, function (i) { return i.currency.toString() === currency; }); + if (theCur) { + if (Number(theCur.value) >= Number(value)) { + theCur.value -= value; + if (validation_1.isEmailValid(receiverUsername)) { + query = { 'email.address': receiverUsername }; + } + else if (validation_1.isValidMobilePhone(receiverUsername)) { + query = { 'phoneNumber.number': receiverUsername }; + } + return user_1.User.findOne(query).session(session) + .then(function (receiver) { return __awaiter(void 0, void 0, void 0, function () { + var theCur2, error; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!receiver) return [3 /*break*/, 7]; + theCur2 = _.find(receiver.wallet, function (i) { return i.currency.toString() === currency; }); + if (!theCur2) return [3 /*break*/, 3]; + theCur2.value += value; + return [4 /*yield*/, receiver.save()]; + case 1: + _a.sent(); + return [4 /*yield*/, sender.save()]; + case 2: + _a.sent(); + return [3 /*break*/, 6]; + case 3: + receiver.wallet.push({ currency: currency, value: value }); + return [4 /*yield*/, receiver.save()]; + case 4: + _a.sent(); + return [4 /*yield*/, sender.save()]; + case 5: + _a.sent(); + _a.label = 6; + case 6: return [3 /*break*/, 8]; + case 7: + error = new myError_1["default"]('The reciever does not exist!', 400, 5, 'نام کاربری گیرنده معتبر نیست!', 'خطا رخ داد'); + throw (error); + case 8: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw (err); + }); + } + else { + var error = new myError_1["default"]('you do not have enough currency', 400, 5, 'موجودی کافی نیست !', 'خطا رخ داد'); + throw (error); + } + } + else { + var error = new myError_1["default"]('you do not have this currency', 400, 5, 'ارز فوق در کیف پول شما موجود نیست !', 'خطا رخ داد'); + throw (error); + } + } + else { + var error = new myError_1["default"]('The user does not exist!', 400, 5, 'چنین کاربری در سیستم ثبت نشده است!', 'خطا رخ داد'); + throw (error); + } + })["catch"](function (err) { + throw (err); + })]; + }); + }); }) + .then(function () { + response_1["default"](res); + })["catch"](function (err) { + console.log('error: ', err); + next(err); + })["finally"](function () { + session.endSession(); + }); + } + else { + var error = new myError_1["default"]('the currency is not valid', 400, 5, 'ارز فوق متعبر نیست !', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + return [2 /*return*/]; + } + }); +}); })); +exports.userRoutes.post('/chargeAcount', auth_1.isAuthorized, +// if we want to aurhorize again we need aonther middleware +tryCatch_1["default"](function (req, res, next) { + var rialObjectId = process.env.OBJECTID_RIAL; + var value = req.body.value; + var userId = req.session.userId; + user_1.User.findOne({ _id: userId }) + .then(function (user) { + var wall = _.find(user.wallet, function (i) { return i.currency.toString() === rialObjectId; }); + wall.value += value; + user.save() + .then(function () { + response_1["default"](res); + })["catch"](function (err) { + next(err); + }); + })["catch"](function (err) { + next(err); + }); +})); diff --git a/server/routes/user.ts b/server/routes/user.ts new file mode 100755 index 0000000..0d26048 --- /dev/null +++ b/server/routes/user.ts @@ -0,0 +1,1193 @@ +import * as express from 'express'; +import * as _ from 'lodash' +import { ObjectID } from 'mongodb'; +import { v4 as uuidv4 } from 'uuid'; +import * as mongoose from 'mongoose' + +import successRes from '../middlewares/response' +import { isAuthorized } from '../middlewares/auth' +import { isEmailValid, isValidMobilePhone, userValidationRules, validate } from '../middlewares/validation' +import tryCatch from '../middlewares/tryCatch' +import { rateLimiterMiddleware } from '../middlewares/preventBruteForce' + +import { User } from '../db/user' +import { Currencies } from '../db/currencies' +import myError from '../api/myError' +import { Accepted_Offers } from '../db/acceptedOffers'; +import { Active_Offers } from '../db/ActiveOffers'; +import { Withdraw_Offers } from '../db/withdrawOffers'; +import { GetPrice } from '../db/getPrice'; + +import { logger } from '../api/logger' +import * as redis from '../api/redis' +import { getonlineLoginUsers } from '../api/socket' +const onlineLoginUsers = getonlineLoginUsers() + +export const userRoutes = express.Router() + +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// GET ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// + +userRoutes.get('/getUserWallet', +isAuthorized, +tryCatch((req, res, next) => { + const userId = req.session.userId + let rialPrice + return redis.hashget("dollarPrice") + .then((rial: number) => { + rialPrice = Number(rial/10) + User.findOne({ _id : userId }) + .then((user: any) => { + if(user && user._id.toString() === userId.toString()) { + let walletArray = [] + const userWallet = user.wallet + let totalAsstetsPrice =0 + let totalAsstetsPriceRial =0 + let status= true + const walletMap = userWallet.map((wall) => { + return redis.hashGetAll(wall.currency.toString()) + .then((wallCurr: any) => { + if (wallCurr) { + let tempWalletArray = { + currencyName: wallCurr.currencyName, + persianName: wallCurr.per_name, + shortName: wallCurr.ab_name, + icon: wallCurr.icon, + _id: wall.currency.toString(), + value: wall.value, + commitment: wall.commitment, + totalPrice: 0, + totalRialPrice: 0 + } + return redis.hashGetAll(wallCurr.ab_name+'-g') + .then((rate: any) => { + if(rate) { + tempWalletArray.totalPrice = wall.value * Number(rate.current) + totalAsstetsPrice += tempWalletArray.totalPrice + if(rialPrice) { + tempWalletArray.totalRialPrice = Math.ceil(Number(tempWalletArray.totalPrice ) * rialPrice) + walletArray.push(tempWalletArray) + } else { + walletArray["totalRialPrice"] = -1 + walletArray.push(tempWalletArray) + } + } else { + status = false + tempWalletArray['totalPrice'] = -1 + walletArray.push(tempWalletArray) + } + }) + .catch((err) => { + throw (err) + }) + } else { + const error = new myError( + 'currency not found!', + 400, + 5, + 'ارز پیدا نشد.!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + throw(err) + }) + }) + Promise.all(walletMap) + .then(() => { + successRes(res, 'user wallet data:', walletArray) + }) + .catch((err) =>{ + next(err) + }) + } else { + const error = new myError( + 'user not found!', + 400, + 5, + 'کاربر مربوطه پیدا نشد!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err)=>{ + next(err) + }) + }) + .catch((err) => { + next(err) + }) +})) + +userRoutes.get('/getUserAcceptedOffers', +isAuthorized, +userValidationRules('query', 'kind'), +validate, +tryCatch((req, res, next) => { + const kind = req.query.kind + const userId = req.session.userId + let query = {} + if(kind === "1") { + query = { creator: userId } + } else if(kind === "2") { + query = { acceptor: userId } + } + Accepted_Offers.find(query) + .then((offers) => { + if(offers && Array.isArray(offers) && offers.length > 0) { + let dataArray = [] + Currencies.find() + .then((curs) => { + offers.forEach(off => { + const givenCur = _.find(curs, (i) => { return i._id.toString()=== off.curGivenId.toString()}) + const takenCur = _.find(curs, (i) => { return i._id.toString()=== off.curTakenId.toString()}) + if(givenCur && takenCur ){ + dataArray.push({ + giveCurname: givenCur.currencyName, + //giveCurValue: off.curGivenVal, + //givenCurPersianName: givenCur.per_name, + //givenCurShortName: givenCur.ab_name, + //givenCurIcon: givenCur.icon, + takenCurname: takenCur.currencyName, + //takenCurValue: off.curTakenVal, + //takenCurpersianName: takenCur.per_name, + //takenCurShortName: takenCur.ab_name, + //takenCurIcon: takenCur.icon, + //createDate: off.offeredDate, + acceptedDate: off.created_at, + }) + } else { + return + } + }) + const orderedDataArray = _.orderBy(dataArray,({acceptedDate}) => acceptedDate, ['asc']) + successRes(res, 'fdasdf', orderedDataArray) + }) + .catch((err) =>{ + next(err) + }) + } else { + const error = new myError( + 'there is no offer', + 400, + 5, + 'سفارشی یافت نشد.!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + })) + +userRoutes.get('/getUserActiveOffers', +isAuthorized, +tryCatch(async (req, res, next) => { + console.log(req.session) + const userId = req.session.userId + const curId = req.query.curIdOp + let query = [] + let rialObj + query.push.apply(query, [{ userId : userId }, { expDate: { $gt: Date.now() } }]) + if(ObjectID.isValid(curId)) { + await Currencies.findOne({ name: 'RIAL' }) + .then((rial: any) => { + if (rial && rial.name === 'RIAL') { + rialObj = rial + query.push({ $or: [ + { $and: [{ curGivenId: curId }, { curTakenId: rial._id } ] }, + { $and: [{ curTakenId: curId }, { curGivenId: rial._id } ] } + ] }) + } + }) + .catch((err) => { + console.log(err) + }) + } + Active_Offers.find({ $and: query }) + .then((offers) => { + if(offers && Array.isArray(offers) && offers.length > 0) { + let dataArray = [] + if (ObjectID.isValid(curId)) { + redis.hashGetAll(curId.toString()) + .then((curObj: any) => { + const offersMap = offers.map((offer) => { + if (offer.curTakenId.toString() === rialObj._id.toString()) { + dataArray.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: offer.curGivenVal, + Gicon: curObj.icon, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curTakenVal, + Ticon: rialObj.icon, + txType: 'sell', + createDate : offer.created_at, + expireDate : offer.expDate, + offerId: offer.offerId + }) + } else { + dataArray.push({ + GcurrencyName: curObj.currencyName, + GpersianName: curObj.per_name, + GshortName: curObj.ab_name, + Gvalue: offer.curTakenVal, + Gicon: curObj.icon, + TcurrencyName: rialObj.currencyName, + TpersianName: rialObj.per_name, + TshortName: rialObj.ab_name, + Tvalue: offer.curGivenVal, + Ticon: rialObj.icon, + txType: 'buy', + createDate : offer.created_at, + expireDate : offer.expDate, + offerId: offer.offerId + }) + } + }) + Promise.all(offersMap) + .then(() => { + const orderedDataArray = _.orderBy(dataArray,({createDate}) => createDate, ['desc']) + successRes(res, 'fdasdf', orderedDataArray) + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + console.log(err) + }) + } else { + Currencies.find() + .then((curs) => { + offers.forEach(off => { + const givenCur = _.find(curs, (i) => { return i._id.toString()=== off.curGivenId.toString()}) + const takenCur = _.find(curs, (i) => { return i._id.toString()=== off.curTakenId.toString()}) + if(givenCur && takenCur) { + dataArray.push ({ + //giveCurValue :off.curGivenVal, + giveCurname : givenCur.currencyName, + //givenCurPersianName : givenCur.per_name, + //givenCurShortName : givenCur.ab_name, + //givenCurIcon : givenCur.icon, + takenCurname : takenCur.currencyName, + //takenCurValue : off.curTakenVal, + //takenCurpersianName: takenCur.per_name, + //takenCurShortName : takenCur.ab_name, + //takenCurIcon : takenCur.icon, + createDate :off.created_at, + expireDate :off.expiredDate, + }) + } else { + return + } + }) + const orderedDataArray = _.orderBy(dataArray,({createDate}) => createDate, ['desc']) + successRes(res, 'fdasdf', orderedDataArray) + }) + .catch((err) => { + next(err) + }) + } + } else { + successRes(res, 'fdasdf', []) + } + }) + .catch((err) =>{ + next(err) + }) + })) + +userRoutes.get('/getUserWithdrawnOffers', +isAuthorized, +tryCatch((req, res, next) => { + const userId = req.session.userId + Withdraw_Offers.findOne({ userId: userId }) + .then((theDoc) => { + if(theDoc && theDoc.userId.toString() === userId) { + if (theDoc.offers && Array.isArray(theDoc.offers) && theDoc.offers.length > 0) { + const modifiedOffers = _.orderBy(theDoc.offers, ['created_at', ['desc']]) + successRes(res, '', modifiedOffers) + } else { + const error = new myError( + 'the user does not have any withdrawnOffers', + 400, + 44, + 'کاربر هیچ پیشنهاد بازپسگیری شده ندارد.', + 'خطا رخ داد' + ) + next(error) + } + } else { + const error = new myError( + 'the user does not have any withdrawnOffers', + 400, + 44, + 'کاربر هیچ پیشنهاد بازپسگیری شده ندارد.', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) +}) +) + +userRoutes.get('/getOfferById', +isAuthorized, +userValidationRules('query', 'type'), +userValidationRules('query', 'offerId'), +validate, +tryCatch((req, res, next) => { + const userId = req.session.userId + const offerId = req.query.offerId + const type = req.query.type + let data + Currencies.find() + .then((currecies) => { + if (type === "1") { + Active_Offers.findOne({ $and: [ { offerId: offerId }, { expDate: { $gt: Date.now() } }] }) + .then((theOffer => { + if(theOffer && theOffer.offerId === offerId) { + if(theOffer.userId.toString() === userId) { + const givenCur = _.find(currecies, (i) => { return i._id.toString() === theOffer.curGivenId.toString()}) + const takenCur = _.find(currecies, (i) => { return i._id.toString() === theOffer.curTakenId.toString()}) + data = { + givenCurName:givenCur.name, + takenCurName:takenCur.name, + offerCreatedDate:theOffer.created_at, + offerExpireDate:theOffer.expDate + } + successRes(res, '', data) + } else { + const error = new myError( + 'you do not have pemissions', + 400, + 5, + 'شما دسترسی ندارید!', + 'خطا رخ داد' + ) + next(error) + } + } else { + const error = new myError( + 'there is no oofer with given offerId in Acive offers', + 400, + 5, + 'پیشنهاد یافت نشد!', + 'خطا رخ داد' + ) + next(error) + } + })) + .catch((err) => { + next(err) + }) + } else if(type === "2") { + Accepted_Offers.findOne({ offerId:offerId }) + .then((theOffer => { + if(theOffer && theOffer.offerId === offerId) { + if(theOffer.acceptor.toString() === userId || theOffer.creator.toString() === userId) { + const givenCur = _.find(currecies, (i) => { return i._id.toString() === theOffer.curGivenId.toString()}) + const takenCur = _.find(currecies, (i) => { return i._id.toString() === theOffer.curTakenId.toString()}) + data = { + givenCurName:givenCur.name, + takenCurName:takenCur.name, + offerCreatedDate : theOffer.created_at, + offerAcceptedDate:theOffer.acceptedDate + } + successRes(res, '', data) + } else { + const error = new myError( + 'you do not have pemissions', + 400, + 5, + 'شما دسترسی ندارید!', + 'خطا رخ داد' + ) + next(error) + } + } else { + const error = new myError( + 'there is no oofer with given offerId in Accepted offers', + 400, + 5, + 'پیشنهاد یافت نشد!', + 'خطا رخ داد' + ) + next(error) + } + })) + .catch((err) => { + next(err) + }) + } else if(type === "3") { + Withdraw_Offers.findOne({ 'offers.offerId': offerId }) + .then((theDoc) => { + if(theDoc) { + if(theDoc.userId.toString() === userId) { + const theOffer = _.find(theDoc.offers, (i) => { return i.offerId === offerId }) + const givenCur = _.find(currecies, (i) => { return i._id.toString() === theOffer.curGivenId.toString() }) + const takenCur = _.find(currecies, (i) => { return i._id.toString() === theOffer.curTakenId.toString() }) + data = { + givenCurName:givenCur.name, + takenCurName:takenCur.name, + offerCreatedDate:theOffer.offeredDate, + offerwhitdrawDate:theOffer.created_at + } + successRes(res, '', data) + } else { + const error = new myError( + 'you do not have pemissions', + 400, + 5, + 'شما دسترسی ندارید!', + 'خطا رخ داد' + ) + next(error) + } + } else { + const error = new myError( + 'there is no oofer with given offerId in withdraw offers', + 400, + 5, + 'پیشنهاد یافت نشد!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) +})) + +userRoutes.get('/acceptOffer', + isAuthorized, + userValidationRules('query','offerId'), + validate, + tryCatch(async(req, res, next) =>{ + const acceptorId = req.session.userId + const offerId = req.query.offerId + const session = await mongoose.startSession() + + Active_Offers.findOne({ offerId: offerId }) + .then((offer: any) => { + if(offer && offer.offerId === offerId) { + const creatorId = offer.userId + if(creatorId.toString() !== acceptorId.toString()) { + const exp = new Date(offer.expDate).getTime() + + if(exp >= Date.now()) { + console.log(exp) + console.log(offer.expDate) + + session.withTransaction(async() => { + return User.findOne({_id : acceptorId}).session(session) + .then((acceptor: any) => { + let takenObjInAccWal = _.find(acceptor.wallet, (e) => e.currency.toString() === offer.curTakenId.toString()) + if(takenObjInAccWal && takenObjInAccWal.value >= offer.curTakenVal) { + return User.findOne({_id : creatorId}).session(session) + .then(async (creator: any) => { + if(creator && creator._id.toString() === creatorId.toString()) { + let givenObjInCreWal = _.find(creator.wallet, (e) => e.currency.toString() === offer.curGivenId.toString()) + if(givenObjInCreWal) { + // take from creator and give to acceptor + givenObjInCreWal.commitment -= Number(offer.curGivenVal) + let takenObjInCreWal = _.find(creator.wallet, (i) => i.currency.toString() === offer.curTakenId.toString()) + if(takenObjInCreWal) { + takenObjInCreWal.value += offer.curTakenVal + } else { + const currencyObj = { + currency : offer.curTakenId, + value : offer.curTakenVal + } + creator.wallet.push(currencyObj) + } + takenObjInAccWal.value -= offer.curTakenVal + let giveObjInAccWal = _.find(acceptor.wallet, (e) => e.currency.toString() === offer.curGivenId.toString()) + if(giveObjInAccWal) { + giveObjInAccWal.value += offer.curGivenVal + } else { + const currencyObj = { + currency : offer.curGivenId, + value : offer.curGivenVal, + } + acceptor.wallet.push(currencyObj) + } + const bodyAccOffer = { + acceptor : acceptorId, + creator: creatorId, + offerId: offer.offerId, + curGivenId: offer.curGivenId, + curGivenVal: offer.curGivenVal, + curTakenId: offer.curTakenId, + curTakenVal: offer.curTakenVal, + offeredDate: offer.created_at, + expiredDate: offer.expDate + } + Currencies.findOne({_id : offer.curGivenId}) + .then((currency) => { + const currentPrice = bodyAccOffer.curTakenVal + let min + let max + redis.hashGetAll('L_' + currency.ab_name) + .then((redisGetObj) => { + if(redisGetObj != null) { + if(currentPrice < redisGetObj['min']) { + min = currentPrice + } else { + min = redisGetObj['min'] + if(currentPrice > redisGetObj['max']) { + max = currentPrice + } else { + max = redisGetObj['max'] + } + } + redis.hashHMset('L_' + currency.ab_name, { + currentPrice: currentPrice, + min : min, + max : max, + }) + } else { + redis.hashHMset('L_' + currency.ab_name, { + currentPrice: currentPrice, + min : currentPrice, + max : currentPrice, + }) + } + }) + .catch((err) => { + throw(err) + }) + }) + .catch((err) => { + throw(err) + }) + await Accepted_Offers.create([bodyAccOffer], { session }) + await creator.save() + await acceptor.save() + await offer.remove() + } else { + const error = new myError( + 'creator wallet does not have given object', + 400, + 5, + 'در کیف پول فرشنده ارز مورد نظر پیدا نشد', + 'خطا رخ داد' + ) + throw(error) + } + } + }) + .catch((err) => { + throw(err) + }) + } else { + const error = new myError( + 'There is no enough currency in acceptor wallet or acceptor does not have the currency', + 400, + 5, + 'ارز مورد در کیف پول خریدار نیست یا موجودی آن کافی نیست', + 'خطا رخ داد' + ) + throw(error) + } + }) + .catch((err) =>{ + throw(err) + }) + }) + .then(() => { + successRes(res, 'Offer accepted succesfully ', offerId, {}) + }) + .catch((err) => { + next(err) + }) + .finally(() => { + session.endSession() + }) + } else { + const error = new myError( + 'offer is expired', + 400, + 5, + 'پیشنهاد منقضی شده است.', + 'خطا رخ داد' + ) + next(error) + } + } else { + const error = new myError( + 'acceptor and creator must be different', + 400, + 5, + 'فروشنده و خریدار باید متفاوت باشند.', + 'خطا رخ داد' + ) + next(error) + } + } else { + const error = new myError( + 'There is no offer with the given offer Id', + 400, + 5, + 'شناسه پیشنهادی یافت نشد.', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) +) + +userRoutes.post('/withdrawOffer', +isAuthorized, +// userValidationRules('query','offerId'), +// validate, +tryCatch(async(req, res, next) =>{ + const userId = req.session.userId + const offerIds = req.body.offerIds + let nowithOffer = false + console.log('offerIds: ', offerIds) + console.log('userId: ', userId) + const session = await mongoose.startSession() + session.withTransaction(async() => { + return User.findOne({ _id : userId }).session(session) + .then((user: any) => { + return Active_Offers.find({ $and: [ { offerId : { $in: offerIds } }, { userId: userId } ] }).session(session) + .then((offers: any) => { + if(offers && offers.length > 0) { + return Withdraw_Offers.findOne({ userId : userId }).session(session) + .then(async (withOffer :any) => { + if(!withOffer) { + nowithOffer = true + withOffer = { + userId: userId, + offers: [] + } + } + const offersMap = offers.map(async (offer, i) => { + const bodyWithOffer = { + userId : userId, + offers: { + offerId : offer.offerId, + curGivenId: offer.curGivenId, + curGivenVal: offer.curGivenVal, + curTakenId: offer.curTakenId, + curTakenVal: offer.curTakenVal, + offeredDate: offer.created_at, + expiredDate: offer.expDate, + withdrawDate: Date.now() + } + } + let userWalCurGivenObj = _.find(user.wallet, (i) => i.currency.toString() === offer.curGivenId.toString()) + if(userWalCurGivenObj && userWalCurGivenObj.commitment >= Number(offer.curGivenVal)) { + userWalCurGivenObj.value += offer.curGivenVal + userWalCurGivenObj.commitment -= Number(offer.curGivenVal) + + withOffer.offers.push(bodyWithOffer.offers) + console.log('i: ', i) + await offer.remove() + } else { + //error user does not have the currency in his/her wallet + const error = new myError( + 'user does not have the given currency in his/her wallet', + 400, + 5, + 'کاربر ارز مورد نظر را در کیف پول ندارد.', + 'خطا رخ داد' + ) + throw(error) + } + }) + return Promise.all(offersMap) + .then(async () => { + if(nowithOffer) { + await Withdraw_Offers.create([withOffer], { session }) + } else { + await withOffer.save() + } + await user.save() + }) + .catch((err) => { + throw err + }) + }) + .catch((err) => { + throw(err) + }) + } else { + const error = new myError( + 'There is no offer with the given Id', + 400, + 5, + 'شناسه پیشنهادی یافت نشد.', + 'خطا رخ داد' + ) + throw(error) + } + }) + .catch((err) => { + throw(err) + }) + }) + .catch((err) => { + throw(err) + }) + }) + .then(() => { + successRes(res, 'Offer removed Successfully. ', true, {}) + }) + .catch((err) => { + console.log('error: ', err) + next(err) + }) + .finally(() => { + session.endSession() + }) + }) +) + + +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// ///////////////////// POST ENDPOINTS ///////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// +/// /////////////////////////////////////////////////////////////////////////////////////////////// + +userRoutes.post('/createOffer', + isAuthorized, + userValidationRules('body', 'curGivenId'), + userValidationRules('body', 'curGivenVal'), + userValidationRules('body', 'curTakenId'), + userValidationRules('body', 'curTakenVal'), + //userValidationRules('body', 'expDate'), + validate, + tryCatch(async(req, res, next) => { + const userId = req.session.userId + const curGivenId = req.body.curGivenId + const curGivenVal = req.body.curGivenVal + const curTakenId = req.body.curTakenId + const curTakenVal = req.body.curTakenVal + const expDate = req.body.expDate + let offerId + let bodyOffer + const exp = new Date(expDate) + const session = await mongoose.startSession() + if(exp.getTime() >= Date.now()) { + if(curGivenId != curTakenId) { + Currencies.findOne({_id : curGivenId}) + .then((curGivenObj) => { + Currencies.findOne({_id : curTakenId}) + .then((curTakenObj) => { + if(curGivenObj && curTakenObj && curGivenObj._id.toString() === curGivenId.toString() && + curTakenObj._id.toString() === curTakenId.toString()) { + + session.withTransaction(() => { + // console.log("sasan") + return User.findOne({_id : userId}).session(session) + .then(async(user: any) => { + if(user && user._id.toString() === userId.toString()) { + let userWallet = _.find(user.wallet, (e) => e.currency.toString() === curGivenId.toString()) // object of specific currency in user's wallet + if(userWallet) { + if(userWallet.value >= curGivenVal) { + offerId = uuidv4() + bodyOffer = { + userId : userId, + offerId: offerId, + curGivenId: curGivenId, + curGivenVal: curGivenVal, + curTakenId: curTakenId, + curTakenVal: curTakenVal, + expDate: expDate, + rank: user.rank + } + userWallet.value = userWallet.value - curGivenVal + userWallet.commitment = userWallet.commitment + Number(curGivenVal) + await Active_Offers.create([bodyOffer], { session }) + await user.save() + } else { + const error = new myError( + 'Given: user has not enough credit in his/her wallet', + 400, + 5, + 'کاربر مقدار کافی از ارز برای پیشنهاد داده شده را ندارد.', + 'خطا رخ داد' + ) + throw(error) + } + } else { + const error = new myError( + 'User does not have this kind of currency', + 400, + 5, + 'کیف پول کاربر ارز پیشنهادی را ندارد.', + 'خطا رخ داد' + ) + throw(error) + } + } + else { + const err = new myError( + 'userId not found', + 400, + 5, + 'خطا رخ داد', + 'کاربری با این شناسه کاربری پیدا نشد.' + ) + throw(err) + } + }) + .catch((err) => { + throw(err) + }) + }) + .then(() => { + successRes(res, 'Offer created succesfully ', offerId, {}) + const modifiedBodyOffer = { + offerId: bodyOffer.offerId, + curGivenId: bodyOffer.curGivenId, + curGivenVal: bodyOffer.curGivenVal, + curTakenId: bodyOffer.curTakenId, + curTakenVal: bodyOffer.curTakenVal, + expDate: bodyOffer.expDate, + } + redis.hashSetMembers(userId) + .then((result) => { + console.log('result: ', result) + }) + onlineLoginUsers.emit('new_offer', modifiedBodyOffer) + }) + .catch((err) => { + console.log('error: ', err) + next(err) + }) + .finally(() => { + session.endSession() + }) + } else { + const err = new myError( + 'curTakenId error', + 400, + 5, + 'ارز وارد شده صحیح نیست', + 'خطا رخ داد' + ) + next(err) + } + }) + .catch((err) => { + next(err) + }) + }) + .catch((err) => { + next (err) + }) + } else { + const err = new myError( + 'curGivenId must be different from curTakenId', + 400, + 5, + 'ارز ها برای تبادل باید متفاوت باشند.', + 'خطا رخ داد' + ) + next(err) + } + } else { + const err = new myError( + 'expire date must be in the future(not before creating offer date)', + 400, + 5, + 'تاریخ انقضای پیشنهاد باید بعد از ایجاد پیشنهاد باشد.', + 'خطا رخ داد' + ) + next(err) + } + }) +); + +userRoutes.post('/getPrice', + isAuthorized, + userValidationRules('body','currency'), + userValidationRules('body','quantity'), + validate, + tryCatch((req, res, next) => { + const userId = req.session.userId + const currency = req.body.currency + const quantity = req.body.quantity + User.findOne({ _id: userId }) + .then((user) => { + if(user && user._id.toString() === userId) { + GetPrice.findOne({ $and: [{ currency: currency }, { userId: user._id }] }) + .then(async (doc) => { + const curRialPrice = await redis.getCurrentPrice(currency) + const bodyPrice = { + currency: currency, + userId: user._id, + quantity: quantity, + rialPricePerUnit: curRialPrice + } + if(doc) { + doc.remove() + const newGetPrice = new GetPrice({ ...bodyPrice }) + newGetPrice.save() + .then(() => { + successRes(res, 'old getPrice doc removed and a new one created', curRialPrice, {}) + }) + .catch((err) => { + next(err) + }) + } else { + const newGetPrice = new GetPrice({ ...bodyPrice }) + newGetPrice.save() + .then(() => { + successRes(res, 'getPrice doc created', curRialPrice, {}) + }) + .catch((err) => { + next(err) + }) + } + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'user not found', + 400, + 5, + 'کاربر پیدا نشد', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) +) + + +userRoutes.post('/addCurrencyValue', +isAuthorized, +userValidationRules('body','currencyId'), +userValidationRules('body','currencyValue'), +validate, +tryCatch((req, res, next) => { + const currency = req.body.currencyId + + const value = Number(req.body.currencyValue) + console.log("req.body.currencyValue is type of ", typeof(req.body.currencyValue)) + const userId = req.session.userId + Currencies.findOne({ _id : currency }) + .then((cur: any) => { + if (cur && cur._id.toString() === currency) { + User.findOne({ _id : userId }) + .then((user: any) => { + if(user && user._id.toString() === userId) { + let wall = _.find(user.wallet, (i) => { return i.currency.toString() === currency.toString() }) + if(wall) { + console.log("wallet value is type of ", typeof(wall.value)) + console.log(" value is type of ", typeof(value)) + wall.value += value + } else { + user.wallet.push({ currency : cur._id , value : value }) + } + user.save() + .then(() => { + successRes(res,"value added successfully") + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'user not found!', + 400, + 5, + 'کاربر مربوطه پیدا نشد!', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + } else { + const error = new myError( + 'currency not found!', + 400, + 5, + 'ارز ها برای تبادل باید متفاوت باشند.', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) +})) + +userRoutes.post('/transferCuurency', +isAuthorized, +userValidationRules('body','currencyId'), +userValidationRules('body','currencyValue'), +userValidationRules('body','receiverUsername'), +validate, +tryCatch(async (req, res, next) => { + const currency = req.body.currencyId + const value = req.body.currencyValue + const receiverUsername = req.body.receiverUsername + let query + const userId = req.session.userId + let session = await mongoose.startSession() + Currencies.findOne({_id : currency}) + .then((curr) => { + if(curr && curr._id.toString() === currency) { + session.withTransaction(async() => { + return User.findOne({ _id : userId }).session(session) + .then((sender: any) => { + if (sender && sender._id.toString() === userId) { + let theCur = _.find(sender.wallet, (i) => { return i.currency.toString() === currency }) + if (theCur) { + if(Number(theCur.value) >= Number(value)) { + theCur.value -= value + if (isEmailValid(receiverUsername)) { + query = { 'email.address': receiverUsername } + } else if (isValidMobilePhone(receiverUsername)) { + query = { 'phoneNumber.number': receiverUsername } + } + return User.findOne(query).session(session) + .then(async(receiver: any) => { + if (receiver) { + let theCur2 = _.find(receiver.wallet, (i) => { return i.currency.toString() === currency }) + if (theCur2) { + theCur2.value += value + await receiver.save() + await sender.save() + } else { + receiver.wallet.push({ currency: currency , value: value }) + await receiver.save() + await sender.save() + } + } else { + const error = new myError( + 'The reciever does not exist!', + 400, + 5, + 'نام کاربری گیرنده معتبر نیست!', + 'خطا رخ داد' + ) + throw(error) + } + }) + .catch((err) =>{ + throw(err) + }) + } else { + const error = new myError( + 'you do not have enough currency', + 400, + 5, + 'موجودی کافی نیست !', + 'خطا رخ داد' + ) + throw(error) + } + } else { + const error = new myError( + 'you do not have this currency', + 400, + 5, + 'ارز فوق در کیف پول شما موجود نیست !', + 'خطا رخ داد' + ) + throw(error) + } + } else { + const error = new myError( + 'The user does not exist!', + 400, + 5, + 'چنین کاربری در سیستم ثبت نشده است!', + 'خطا رخ داد' + ) + throw(error) + } + }) + .catch((err) => { + throw(err) + }) + }) + .then(()=> { + successRes(res) + }) + .catch((err) => { + console.log('error: ', err) + next(err) + }) + .finally(() => { + session.endSession() + }) + } else { + const error = new myError( + 'the currency is not valid', + 400, + 5, + 'ارز فوق متعبر نیست !', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) =>{ + next(err) + }) + })) + +userRoutes.post('/chargeAcount', + isAuthorized, + // if we want to aurhorize again we need aonther middleware + tryCatch((req, res, next) => { + const rialObjectId = process.env.OBJECTID_RIAL + const value = req.body.value + const userId = req.session.userId + User.findOne({_id : userId}) + .then((user: any) =>{ + let wall = _.find(user.wallet, (i) => { return i.currency.toString()=== rialObjectId}) + wall.value += value + user.save() + .then(() =>{ + successRes(res) + }).catch((err) =>{ + next(err) + }) + }).catch((err) =>{ + next(err) + }) + })) diff --git a/server/routes/wallet.js b/server/routes/wallet.js new file mode 100755 index 0000000..58eae06 --- /dev/null +++ b/server/routes/wallet.js @@ -0,0 +1,679 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.walletRoutes = void 0; +var express = require("express"); +var async_retry_1 = require("async-retry"); +var _ = require("lodash"); +var mongoose = require("mongoose"); +var uuidv4 = require("uuid4"); +var user_1 = require("../db/user"); +var admin_1 = require("../db/admin"); +var getPrice_1 = require("../db/getPrice"); +var acceptedOffers_1 = require("../db/acceptedOffers"); +var activeOffers_1 = require("../db/activeOffers"); +var validation_1 = require("../middlewares/validation"); +var tryCatch_1 = require("../middlewares/tryCatch"); +var auth_1 = require("../middlewares/auth"); +var response_1 = require("../middlewares/response"); +var redis = require("../api/redis"); +var myError_1 = require("../api/myError"); +var suggestOffers_1 = require("../api/suggestOffers"); +var etheriumWallet = require("../api/walletApi/etheriuem"); +var transferFromExchange_1 = require("../api/walletApi/transferFromExchange"); +var transferToExchangeById_1 = require("../api/walletApi/transferToExchangeById"); +exports.walletRoutes = express.Router(); +////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////////////////// +exports.walletRoutes.get('/getEtheriumNonce', auth_1.isAuthorized, validation_1.userValidationRules('query', 'etheriumAccountAddress'), validation_1.validate, tryCatch_1["default"](function (req, res, next) { + var etheriumAccountAddress = req.query.etheriumAccountAddress; + etheriumWallet.getEtheriumNonce(etheriumAccountAddress) + .then(function (result) { + response_1["default"](res, 'Getting nonce completed successfully', Number(result), {}); + })["catch"](function (err) { + next(err); + }); +})); +exports.walletRoutes.post('/buyCurrency', auth_1.isAuthorized, validation_1.userValidationRules('body', 'currency'), validation_1.validate, tryCatch_1["default"](function (req, res, next) { return __awaiter(void 0, void 0, void 0, function () { + var userId, currency, quantity, price; + return __generator(this, function (_a) { + userId = req.session.userId; + currency = req.body.currency; + quantity = req.body.quantity; + getPrice_1.GetPrice.findOne({ $and: [{ currency: currency }, { userId: userId }] }) + .then(function (priceObj) { return __awaiter(void 0, void 0, void 0, function () { + var curRialPrice, error; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!(priceObj && priceObj.currency.toString() === currency.toString() && priceObj.userId.toString() === userId.toString())) return [3 /*break*/, 2]; + return [4 /*yield*/, redis.getCurrentPrice(currency)]; + case 1: + curRialPrice = _a.sent(); + if (curRialPrice > priceObj.rialPricePerUnit) { + price = priceObj.rialPricePerUnit; + } + else { + price = curRialPrice; + } + redis.hashGetAll("RIAL") + .then(function (rialObject) { return __awaiter(void 0, void 0, void 0, function () { + var errorCounter_1, session_1; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!Boolean(process.env.BUYFROMOFFERS)) return [3 /*break*/, 1]; + errorCounter_1 = 5; + async_retry_1["default"](function (bail) { return __awaiter(void 0, void 0, void 0, function () { + var session, offerIds, suggestedOffers; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: return [4 /*yield*/, mongoose.startSession()]; + case 1: + session = _a.sent(); + offerIds = []; + return [4 /*yield*/, suggestOffers_1.suggestOffers({ userId: userId, price: priceObj.rialPricePerUnit, capacity: quantity, offerType: 'buy', currencyId: currency, rialId: rialObject.id })]; + case 2: + suggestedOffers = _a.sent(); + if (!(suggestedOffers && Array.isArray(suggestedOffers.subset))) return [3 /*break*/, 4]; + return [4 /*yield*/, suggestedOffers.subset.map(function (e) { + return e.id; + })]; + case 3: + offerIds = _a.sent(); + return [3 /*break*/, 5]; + case 4: throw 'No suggested offers!'; + case 5: return [2 /*return*/, session.withTransaction(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + return [2 /*return*/, activeOffers_1.Active_Offers.find({ offerId: { $in: offerIds } }).session(session) + .then(function (offers) { + if (offers.length !== offerIds.length) { + var error = new myError_1["default"](); + throw error; + } + else { + return user_1.User.findOne({ _id: userId }).session(session) + .then(function (buyerUser) { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + return [2 /*return*/, admin_1.Admin.findOne({}).session(session) + .then(function (admin) { return __awaiter(void 0, void 0, void 0, function () { + var givenObjInBuyer, takenObjInBuyer, givenCurrencyValueObject, orderAcceptor; + return __generator(this, function (_a) { + givenObjInBuyer = _.find(buyerUser.wallet, function (e) { return e.currency.toString() === priceObj.currency.toString(); }); + takenObjInBuyer = _.find(buyerUser.wallet, function (e) { return e.currency.toString() === rialObject.id.toString(); }); + if (!givenObjInBuyer) { + givenCurrencyValueObject = { + currency: priceObj.currency, + value: 0 + }; + buyerUser.wallet.push(givenCurrencyValueObject); + givenObjInBuyer = givenCurrencyValueObject; + } + orderAcceptor = offers.map(function (individualOffer) { + var buyOrderId = uuidv4(); + var sellerId = individualOffer.userId; + return user_1.User.findOne({ _id: sellerId }).session(session) + .then(function (creator) { return __awaiter(void 0, void 0, void 0, function () { + var givenObjInCreWal, takenObjInCreWal, currencyObj, bodyAccOffer, error, error; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!(creator && creator._id.toString() === sellerId.toString())) return [3 /*break*/, 5]; + givenObjInCreWal = _.find(creator.wallet, function (e) { return e.currency.toString() === individualOffer.curGivenId.toString(); }); + if (!givenObjInCreWal) return [3 /*break*/, 3]; + givenObjInCreWal.commitment -= Number(individualOffer.curGivenVal); + takenObjInCreWal = _.find(creator.wallet, function (i) { return i.currency.toString() === individualOffer.curTakenId.toString(); }); + if (takenObjInCreWal) { + takenObjInCreWal.value += individualOffer.curTakenVal; + } + else { + currencyObj = { + currency: individualOffer.curTakenId, + value: individualOffer.curTakenVal + }; + creator.wallet.push(currencyObj); + takenObjInCreWal = currencyObj; + } + takenObjInBuyer.value -= individualOffer.curTakenVal; + givenObjInBuyer.value += individualOffer.curGivenVal; + bodyAccOffer = { + acceptor: admin._id, + creator: sellerId, + offerId: individualOffer.offerId, + curGivenId: individualOffer.curGivenId, + curGivenVal: individualOffer.curGivenVal, + curTakenId: individualOffer.curTakenId, + curTakenVal: individualOffer.curTakenVal, + offeredDate: individualOffer.created_at, + expiredDate: individualOffer.expDate, + buyOrderId: buyOrderId + }; + return [4 /*yield*/, creator.save()]; + case 1: + _a.sent(); + return [4 /*yield*/, acceptedOffers_1.Accepted_Offers.create([bodyAccOffer], { session: session })]; + case 2: + _a.sent(); + return [3 /*break*/, 4]; + case 3: + error = new myError_1["default"]('creator wallet does not have given object', 400, 5, 'در کیف پول فرشنده ارز مورد نظر پیدا نشد', 'خطا رخ داد'); + throw (error); + case 4: return [3 /*break*/, 6]; + case 5: + error = new myError_1["default"]('failed to accept an offer', 400, 5, 'موفق به پذیرش یک آفر نشدیم', 'خطا رخ داد'); + throw (error); + case 6: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw (err); + }); + }); + return [2 /*return*/, Promise.all(orderAcceptor) + .then(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + // buyerUser.password = undefined + return [4 /*yield*/, buyerUser.save()]; + case 1: + // buyerUser.password = undefined + _a.sent(); + return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw (err); + })]; + }); + }); })["catch"](function (err) { + throw (err); + })]; + }); + }); })["catch"](function (err) { + throw (err); + }); + } + })["catch"](function (err) { + throw (err); + })]; + }); + }); }) + .then(function () { + response_1["default"](res, 'Buying process finished successfully', true, {}); + })["catch"](function (err) { + errorCounter_1--; + if (errorCounter_1 == 0) { + next(err); + } + else { + throw (err); + } + })["finally"](function () { + session.endSession(); + })]; + } + }); + }); }, { + maxTimeout: 5000, + retries: 5 + }); + return [3 /*break*/, 3]; + case 1: return [4 /*yield*/, mongoose.startSession()]; + case 2: + session_1 = _a.sent(); + session_1.withTransaction(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + return [2 /*return*/, user_1.User.findOne({ _id: userId }).session(session_1) + .then(function (user) { return __awaiter(void 0, void 0, void 0, function () { + var rialWalInUser, error; + return __generator(this, function (_a) { + rialWalInUser = _.find(user.wallet, function (i) { return i.currency.toString() === rialObject.id.toString(); }); + if (rialWalInUser.value >= priceObj.rialPrice) { + return [2 /*return*/, admin_1.Admin.findOne({}).session(session_1) + .then(function (admin) { return __awaiter(void 0, void 0, void 0, function () { + var rialWalInAdmin, curWalInUser, curWalInAdmin, bodyCurrency; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + rialWalInAdmin = _.find(admin.wallet, function (i) { return i.currency.toString() === rialObject.id.toString(); }); + curWalInUser = _.find(user.wallet, function (i) { return i.currency.toString() === currency.toString(); }); + curWalInAdmin = _.find(admin.wallet, function (i) { return i.currency.toString() === currency.toString(); }); + if (!curWalInUser) return [3 /*break*/, 4]; + curWalInUser.value += Number(priceObj.quantity); + curWalInAdmin.value -= Number(priceObj.quantity); + rialWalInUser.value -= Number(priceObj.rialPrice); + rialWalInAdmin.value += Number(priceObj.rialPrice); + return [4 /*yield*/, admin.save()]; + case 1: + _a.sent(); + return [4 /*yield*/, user.save()]; + case 2: + _a.sent(); + return [4 /*yield*/, priceObj.remove()]; + case 3: + _a.sent(); + return [3 /*break*/, 8]; + case 4: + bodyCurrency = { + currency: currency, + value: priceObj.quantity, + commitment: 0 + }; + user.wallet.push(bodyCurrency); + rialWalInUser.value -= priceObj.rialPrice; + rialWalInAdmin.value += priceObj.rialPrice; + curWalInAdmin.value -= priceObj.quantity; + return [4 /*yield*/, admin.save()]; + case 5: + _a.sent(); + return [4 /*yield*/, user.save()]; + case 6: + _a.sent(); + return [4 /*yield*/, priceObj.remove()]; + case 7: + _a.sent(); + _a.label = 8; + case 8: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw err; + })]; + } + else { + error = new myError_1["default"]('User does not have enough rial credit in his/her wallet.', 400, 5, 'کاربر ارز ریالی کافی برای خرید را ندارد.', 'خطا رخ داد'); + throw (error); + } + return [2 /*return*/]; + }); + }); })["catch"](function (err) { + throw (err); + })]; + }); + }); }) + .then(function () { + response_1["default"](res, 'Buying process finished successfully', true, {}); + })["catch"](function (err) { + next(err); + })["finally"](function () { + session_1.endSession(); + }); + _a.label = 3; + case 3: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + next(err); + }); + return [3 /*break*/, 3]; + case 2: + error = new myError_1["default"]('There is no price in GetPrice', 400, 5, 'قیمت معادل ریالی پیدا نشد.', 'خطا رخ داد'); + next(error); + _a.label = 3; + case 3: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + next(err); + }); + return [2 /*return*/]; + }); +}); })); +exports.walletRoutes.post('/sellCurrency', auth_1.isAuthorized, validation_1.userValidationRules('body', 'currency'), validation_1.validate, tryCatch_1["default"](function (req, res, next) { return __awaiter(void 0, void 0, void 0, function () { + var userId, currency, quantity; + return __generator(this, function (_a) { + userId = req.session.userId; + currency = req.body.currency; + quantity = req.body.quantity; + getPrice_1.GetPrice.findOne({ $and: [{ currency: currency }, { userId: userId }] }) + .then(function (priceObj) { + if (priceObj && priceObj.currency.toString() === currency.toString() && priceObj.userId.toString() === userId.toString()) { + redis.hashGetAll("RIAL") + .then(function (rialObject) { return __awaiter(void 0, void 0, void 0, function () { + var errorCounter_2, session_2; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!Boolean(process.env.BUYFROMOFFERS)) return [3 /*break*/, 1]; + errorCounter_2 = 5; + async_retry_1["default"](function (bail) { return __awaiter(void 0, void 0, void 0, function () { + var session, offerIds, suggestedOffers; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: return [4 /*yield*/, mongoose.startSession()]; + case 1: + session = _a.sent(); + offerIds = []; + return [4 /*yield*/, suggestOffers_1.suggestOffers({ userId: userId, price: priceObj.rialPricePerUnit, capacity: quantity, offerType: 'buy', currencyId: currency, rialId: rialObject.id })]; + case 2: + suggestedOffers = _a.sent(); + if (!(suggestedOffers && Array.isArray(suggestedOffers.subset))) return [3 /*break*/, 4]; + return [4 /*yield*/, suggestedOffers.subset.map(function (e) { + return e.id; + })]; + case 3: + offerIds = _a.sent(); + return [3 /*break*/, 5]; + case 4: throw 'No suggested offers!'; + case 5: return [2 /*return*/, session.withTransaction(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + return [2 /*return*/, activeOffers_1.Active_Offers.find({}).session(session) + .then(function (offers) { + if (offers.length == offerIds.length) { + console.log("testing"); + } + else { + return user_1.User.findOne({ _id: userId }).session(session) + .then(function (buyerUser) { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + return [2 /*return*/, admin_1.Admin.findOne({}).session(session) + .then(function (admin) { return __awaiter(void 0, void 0, void 0, function () { + var givenObjInBuyer, takenObjInBuyer, takenCurrencyValueObject, orderAcceptor; + return __generator(this, function (_a) { + givenObjInBuyer = _.find(buyerUser.wallet, function (e) { return e.currency.toString() === priceObj.currency.toString(); }); + takenObjInBuyer = _.find(buyerUser.wallet, function (e) { return e.currency.toString() === rialObject.id.toString(); }); + if (!takenObjInBuyer) { + takenCurrencyValueObject = { + currency: rialObject.id, + value: 0 + }; + buyerUser.wallet.push(takenCurrencyValueObject); + takenObjInBuyer = takenCurrencyValueObject; + } + orderAcceptor = offers.map(function (individualOffer) { + var buyOrderId = uuidv4(); + var sellerId = individualOffer.userId; + return user_1.User.findOne({ _id: sellerId }).session(session) + .then(function (creator) { return __awaiter(void 0, void 0, void 0, function () { + var givenObjInCreWal, takenObjInCreWal, currencyObj, bodyAccOffer, error, error; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!(creator && creator._id.toString() === sellerId.toString())) return [3 /*break*/, 5]; + givenObjInCreWal = _.find(creator.wallet, function (e) { return e.currency.toString() === individualOffer.curGivenId.toString(); }); + if (!givenObjInCreWal) return [3 /*break*/, 3]; + // take from creator and give to buyer + givenObjInCreWal.commitment -= Number(individualOffer.curGivenVal); + takenObjInCreWal = _.find(creator.wallet, function (i) { return i.currency.toString() === individualOffer.curTakenId.toString(); }); + if (takenObjInCreWal) { + takenObjInCreWal.value += individualOffer.curTakenVal; + } + else { + currencyObj = { + currency: individualOffer.curTakenId, + value: individualOffer.curTakenVal + }; + creator.wallet.push(currencyObj); + takenObjInCreWal = currencyObj; + } + takenObjInBuyer.value -= individualOffer.curTakenVal; + givenObjInBuyer.value += individualOffer.curGivenVal; + bodyAccOffer = { + acceptor: admin._id, + creator: sellerId, + offerId: individualOffer.offerId, + curGivenId: individualOffer.curGivenId, + curGivenVal: individualOffer.curGivenVal, + curTakenId: individualOffer.curTakenId, + curTakenVal: individualOffer.curTakenVal, + offeredDate: individualOffer.created_at, + expiredDate: individualOffer.expDate, + buyOrderId: buyOrderId + }; + return [4 /*yield*/, creator.save()]; + case 1: + _a.sent(); + return [4 /*yield*/, acceptedOffers_1.Accepted_Offers.create([bodyAccOffer], { session: session })["catch"](function (err) { + throw (err); + })]; + case 2: + _a.sent(); + return [3 /*break*/, 4]; + case 3: + error = new myError_1["default"]('creator wallet does not have given object', 400, 5, 'در کیف پول فرشنده ارز مورد نظر پیدا نشد', 'خطا رخ داد'); + throw (error); + case 4: return [3 /*break*/, 6]; + case 5: + error = new myError_1["default"]('failed to accept an offer', 400, 5, 'موفق به پذیرش یک آفر نشدیم', 'خطا رخ داد'); + throw (error); + case 6: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw (err); + }); + }); + return [2 /*return*/, Promise.all(orderAcceptor) + .then(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + switch (_a.label) { + case 0: return [4 /*yield*/, buyerUser.save()]; + case 1: + _a.sent(); + return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + throw (err); + })]; + }); + }); })["catch"](function (err) { + throw (err); + })]; + }); + }); })["catch"](function (err) { + throw (err); + }); + } + })["catch"](function (err) { + throw (err); + })]; + }); + }); }) + .then(function () { + response_1["default"](res, 'Buying process finished successfully', true, {}); + })["catch"](function (err) { + errorCounter_2--; + if (errorCounter_2 == 0) { + next(err); + } + else { + throw (err); + } + })["finally"](function () { + session.endSession(); + })]; + } + }); + }); }, { + maxTimeout: 5000, + retries: 5 + }); + return [3 /*break*/, 3]; + case 1: return [4 /*yield*/, mongoose.startSession()]; + case 2: + session_2 = _a.sent(); + session_2.withTransaction(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + return [2 /*return*/, user_1.User.findOne({ _id: userId }).session(session_2) + .then(function (user) { return __awaiter(void 0, void 0, void 0, function () { + var currencyWalInUser, error; + return __generator(this, function (_a) { + currencyWalInUser = _.find(user.wallet, function (i) { return i.currency.toString() === priceObj.currency.toString(); }); + if (currencyWalInUser.value >= priceObj.quantity) { + return [2 /*return*/, admin_1.Admin.findOne({}).session(session_2) + .then(function (admin) { return __awaiter(void 0, void 0, void 0, function () { + var rialWalInAdmin, curWalInUser, rialWalInUser, curWalInAdmin, bodyCurrency; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + rialWalInAdmin = _.find(admin.wallet, function (i) { return i.currency.toString() === rialObject.id.toString(); }); + curWalInUser = _.find(user.wallet, function (i) { return i.currency.toString() === currency.toString(); }); + rialWalInUser = _.find(user.wallet, function (i) { return i.currency.toString() === rialObject.id.toString(); }); + curWalInAdmin = _.find(admin.wallet, function (i) { return i.currency.toString() === currency.toString(); }); + if (!rialWalInUser) return [3 /*break*/, 4]; + rialWalInUser.value += Number(priceObj.rialPrice); + curWalInUser.value -= Number(priceObj.quantity); + curWalInAdmin.value += Number(priceObj.quantity); + rialWalInAdmin.value -= Number(priceObj.rialPrice); + return [4 /*yield*/, admin.save()]; + case 1: + _a.sent(); + return [4 /*yield*/, user.save()]; + case 2: + _a.sent(); + return [4 /*yield*/, priceObj.remove()]; + case 3: + _a.sent(); + return [3 /*break*/, 8]; + case 4: + bodyCurrency = { + currency: currency, + value: priceObj.quantity, + commitment: 0 + }; + user.wallet.push(bodyCurrency); + rialWalInUser.value -= priceObj.rialPrice; + rialWalInAdmin.value += priceObj.rialPrice; + curWalInAdmin.value -= priceObj.quantity; + return [4 /*yield*/, admin.save()]; + case 5: + _a.sent(); + return [4 /*yield*/, user.save()]; + case 6: + _a.sent(); + return [4 /*yield*/, priceObj.remove()]; + case 7: + _a.sent(); + _a.label = 8; + case 8: return [2 /*return*/]; + } + }); + }); })]; + } + else { + error = new myError_1["default"]('User does not have enough rial credit in his/her wallet.', 400, 5, 'کاربر ارز ریالی کافی برای خرید را ندارد.', 'خطا رخ داد'); + throw (error); + } + return [2 /*return*/]; + }); + }); })["catch"](function (err) { + throw (err); + })]; + }); + }); }) + .then(function () { + response_1["default"](res, 'Buying process finished successfully', true, {}); + })["catch"](function (err) { + next(err); + })["finally"](function () { + session_2.endSession(); + }); + _a.label = 3; + case 3: return [2 /*return*/]; + } + }); + }); })["catch"](function (err) { + next(err); + }); + } + else { + var error = new myError_1["default"]('There is no price in GetPrice', 400, 5, 'قیمت معادل ریالی پیدا نشد.', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); + return [2 /*return*/]; + }); +}); })); +exports.walletRoutes.post('/transferFromExchange', auth_1.isAuthorized, tryCatch_1["default"](function (req, res, next) { + var value = req.body.value; + var currencyId = req.body.currencyId; + var receiver = req.body.receiver; + var userId = req.session.userId; + transferFromExchange_1.transferFromExchangeApi(currencyId, value, receiver, userId) + .then(function (data) { + response_1["default"](res, "transaction completed please wait", data.txHash); + })["catch"](function (err) { + next(err); + }); +})); +exports.walletRoutes.post('/transferToExchange', tryCatch_1["default"](function (req, res, next) { + var signedRawTxHex = req.body.tx; + var currencyId = req.body.currencyId; + var userId = req.session.userId; + var value = req.body.value; + user_1.User.findOne({ _id: userId }) + .then(function (user) { + if (user) { + var cur = _.find(user.wallet, function (i) { return i.currency.toString() === currencyId.toString(); }); + if (cur) { + //invoke transferToExchangeApi + } + else { + var error = new myError_1["default"]('currency not found in user wallet', 400, 5, 'ارز مربوطه در کیف پول کاربر پیدا نشد.', 'خطا رخ داد'); + next(error); + } + } + else { + var error = new myError_1["default"]('user not found', 400, 5, 'کاربر پیدا نشد.', 'خطا رخ داد'); + next(error); + } + })["catch"](function (err) { + next(err); + }); +})); +exports.walletRoutes.post('/transferToExchangeById', auth_1.isAuthorized, tryCatch_1["default"](function (req, res, next) { + var txId = req.body.txId; + var currencyId = req.body.currencyId; + var userId = req.session.userId; + transferToExchangeById_1.transferToExchangeByIdApi(currencyId, txId, userId) + .then(function (txInf) { + if (txInf.status === "successful") { + response_1["default"](res, "you have the currency"); + } + else if (txInf.status === "pending") { + response_1["default"](res, "please wait"); + } + })["catch"](function (err) { + next(err); + }); +})); diff --git a/server/routes/wallet.ts b/server/routes/wallet.ts new file mode 100755 index 0000000..453c523 --- /dev/null +++ b/server/routes/wallet.ts @@ -0,0 +1,604 @@ +import * as express from 'express'; +import retry from 'async-retry'; +import * as _ from 'lodash' +import * as mongoose from 'mongoose' +import * as uuidv4 from 'uuid4' + +import { User } from '../db/user' +import { Admin } from '../db/admin' +import { GetPrice } from '../db/getPrice'; +import { Accepted_Offers } from '../db/acceptedOffers' +import { Active_Offers } from '../db/activeOffers' + +import { userValidationRules, validate } from '../middlewares/validation' +import tryCatch from '../middlewares/tryCatch' +import { rateLimiterMiddleware } from '../middlewares/preventBruteForce' +import { isAuthorized } from '../middlewares/auth' +import successRes from '../middlewares/response' + +import * as redis from '../api/redis' +import myError from '../api/myError' +import { logger } from '../api/logger' +import { suggestOffers } from '../api/suggestOffers' + +import * as etheriumWallet from '../api/walletApi/etheriuem' + +import { transferFromExchangeApi } from '../api/walletApi/transferFromExchange' +import { transferToExchangeApi } from '../api/walletApi/transferToExchange' +import { transferToExchangeByIdApi } from '../api/walletApi/transferToExchangeById' + +export const walletRoutes = express.Router() + +////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////////////////// + +walletRoutes.get('/getEtheriumNonce', +isAuthorized, +userValidationRules('query', 'etheriumAccountAddress'), +validate, +tryCatch((req, res, next) => { + const etheriumAccountAddress = req.query.etheriumAccountAddress + etheriumWallet.getEtheriumNonce(etheriumAccountAddress) + .then((result)=>{ + successRes(res, 'Getting nonce completed successfully', Number(result), {}) + }) + .catch((err)=>{ + next(err) + }) +})) + +walletRoutes.post('/buyCurrency', + isAuthorized, + userValidationRules('body', 'currency'), + validate, + tryCatch(async (req, res, next) => { + const userId = req.session.userId + const currency = req.body.currency + const quantity = req.body.quantity + let price + GetPrice.findOne({ $and: [{ currency: currency }, { userId: userId } ] }) + .then(async (priceObj) => { + if(priceObj && priceObj.currency.toString() === currency.toString()&& priceObj.userId.toString() === userId.toString()) { + const curRialPrice = await redis.getCurrentPrice(currency) + if (curRialPrice > priceObj.rialPricePerUnit) { + price = priceObj.rialPricePerUnit + } else { + price = curRialPrice + } + redis.hashGetAll("RIAL") + .then(async(rialObject: any) => { + if(Boolean(process.env.BUYFROMOFFERS)) { + let errorCounter = 5; + retry(async bail => { + const session = await mongoose.startSession() + let offerIds = [] + const suggestedOffers = await suggestOffers({ userId, price: priceObj.rialPricePerUnit, capacity: quantity, offerType: 'buy', currencyId: currency, rialId: rialObject.id }) + if(suggestedOffers && Array.isArray(suggestedOffers.subset)) { + offerIds = await suggestedOffers.subset.map((e) => { + return e.id + }) + } else { + throw 'No suggested offers!' + } + return session.withTransaction(async() => { + return Active_Offers.find({ offerId: { $in: offerIds } }).session(session) + .then((offers) => { + if(offers.length !== offerIds.length) { + const error = new myError ( + + ); + throw error + } else { + return User.findOne({ _id : userId }).session(session) + .then(async (buyerUser: any) => { + return Admin.findOne({}).session(session) + .then(async (admin: any) => { + let givenObjInBuyer = _.find(buyerUser.wallet, (e) => e.currency.toString() === priceObj.currency.toString()) + let takenObjInBuyer = _.find(buyerUser.wallet, (e) => e.currency.toString() === rialObject.id.toString()) + if(!givenObjInBuyer) { + const givenCurrencyValueObject = { + currency : priceObj.currency, + value : 0 + } + buyerUser.wallet.push(givenCurrencyValueObject) + givenObjInBuyer = givenCurrencyValueObject + } + const orderAcceptor = offers.map((individualOffer) => { + const buyOrderId = uuidv4() + const sellerId = individualOffer.userId + return User.findOne({ _id : sellerId }).session(session) + .then(async (creator: any) => { + if(creator && creator._id.toString() === sellerId.toString()) { + let givenObjInCreWal = _.find(creator.wallet, (e) => e.currency.toString() === individualOffer.curGivenId.toString()) + if(givenObjInCreWal) { + givenObjInCreWal.commitment -= Number(individualOffer.curGivenVal) + let takenObjInCreWal = _.find(creator.wallet, (i) => i.currency.toString() === individualOffer.curTakenId.toString()) + if(takenObjInCreWal) { + takenObjInCreWal.value += individualOffer.curTakenVal + } else { + const currencyObj = { + currency : individualOffer.curTakenId, + value : individualOffer.curTakenVal + } + creator.wallet.push(currencyObj) + takenObjInCreWal = currencyObj + } + takenObjInBuyer.value -= individualOffer.curTakenVal + givenObjInBuyer.value += individualOffer.curGivenVal + const bodyAccOffer = { + acceptor : admin._id, + creator: sellerId, + offerId: individualOffer.offerId, + curGivenId: individualOffer.curGivenId, + curGivenVal: individualOffer.curGivenVal, + curTakenId: individualOffer.curTakenId, + curTakenVal: individualOffer.curTakenVal, + offeredDate: individualOffer.created_at, + expiredDate : individualOffer.expDate, + buyOrderId + } + + await creator.save() + await Accepted_Offers.create([bodyAccOffer], { session }) + } else { + const error = new myError( + 'creator wallet does not have given object', + 400, + 5, + 'در کیف پول فرشنده ارز مورد نظر پیدا نشد', + 'خطا رخ داد' + ) + throw(error) + } + } else { + const error = new myError( + 'failed to accept an offer', + 400, + 5, + 'موفق به پذیرش یک آفر نشدیم', + 'خطا رخ داد' + ) + throw(error) + } + }) + .catch((err) => { + throw(err) + }) + }) + return Promise.all(orderAcceptor) + .then(async() => { + // buyerUser.password = undefined + await buyerUser.save() + }) + .catch((err)=>{ + throw(err) + }) + }).catch((err)=>{ + throw(err) + }) + }) + .catch((err) => { + throw(err) + }) + } + }) + .catch((err) => { + throw (err) + }) + }) + .then(() => { + successRes(res, 'Buying process finished successfully', true, {}) + }) + .catch((err) => { + errorCounter-- + if(errorCounter==0) { + next(err) + } else { + throw(err) + } + }) + .finally(() => { + session.endSession() + }) + }, { + maxTimeout: 5000, + retries: 5 + } + ) + } else { + const session = await mongoose.startSession() + session.withTransaction(async() => { + return User.findOne({ _id : userId }).session(session) + .then(async (user: any) => { + let rialWalInUser = _.find(user.wallet, (i) => { return i.currency.toString() === rialObject.id.toString() }) + if(rialWalInUser.value >= priceObj.rialPrice) { + return Admin.findOne({}).session(session) + .then(async (admin: any) => { + let rialWalInAdmin = _.find(admin.wallet, (i) => { return i.currency.toString() === rialObject.id.toString() }) + let curWalInUser = _.find(user.wallet, (i) => { return i.currency.toString() === currency.toString() }) + let curWalInAdmin = _.find(admin.wallet, (i) => { return i.currency.toString() === currency.toString() }) + if(curWalInUser ) { + curWalInUser.value += Number(priceObj.quantity) + curWalInAdmin.value -= Number(priceObj.quantity) + rialWalInUser.value -= Number(priceObj.rialPrice) + rialWalInAdmin.value += Number(priceObj.rialPrice) + await admin.save() + await user.save() + await priceObj.remove() + } else { + const bodyCurrency = { + currency : currency, + value : priceObj.quantity, + commitment : 0 + } + user.wallet.push(bodyCurrency) + rialWalInUser.value -= priceObj.rialPrice + rialWalInAdmin.value += priceObj.rialPrice + curWalInAdmin.value -=priceObj.quantity + await admin.save() + await user.save() + await priceObj.remove() + } + }) + .catch((err) => { + throw err + }) + + } else { + const error = new myError( + 'User does not have enough rial credit in his/her wallet.', + 400, + 5, + 'کاربر ارز ریالی کافی برای خرید را ندارد.', + 'خطا رخ داد' + ) + throw(error) + } + }) + .catch((err) => { + throw(err) + }) + }) + .then(() => { + successRes(res, 'Buying process finished successfully', true, {}) + + }) + .catch((err) => { + next(err) + }) + .finally(() => { + session.endSession() + }) + } + }) + .catch((err) => { + next(err) + }) + } else { + //there is no price in GetPrice + const error = new myError( + 'There is no price in GetPrice', + 400, + 5, + 'قیمت معادل ریالی پیدا نشد.', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) +) + +walletRoutes.post('/sellCurrency', + isAuthorized, + userValidationRules('body', 'currency'), + validate, + tryCatch(async (req, res, next) => { + const userId = req.session.userId + const currency = req.body.currency + const quantity = req.body.quantity + GetPrice.findOne({ $and: [{ currency: currency }, { userId: userId }] }) + .then((priceObj) => { + if(priceObj && priceObj.currency.toString() === currency.toString() && priceObj.userId.toString() === userId.toString()) { + redis.hashGetAll("RIAL") + .then(async(rialObject: any) => { + if(Boolean(process.env.BUYFROMOFFERS)) { + let errorCounter = 5; + retry(async bail => { + const session = await mongoose.startSession() + let offerIds = [] + const suggestedOffers = await suggestOffers({ userId, price: priceObj.rialPricePerUnit, capacity: quantity, offerType: 'buy', currencyId: currency, rialId: rialObject.id }) + if(suggestedOffers && Array.isArray(suggestedOffers.subset)) { + offerIds = await suggestedOffers.subset.map((e) => { + return e.id + }) + } else { + throw 'No suggested offers!' + } + return session.withTransaction(async() => { + return Active_Offers.find({}).session(session) + .then((offers) => { + if(offers.length==offerIds.length){ + console.log("testing") + } else { + return User.findOne({ _id : userId }).session(session) + .then(async (buyerUser: any) => { + return Admin.findOne({}).session(session) + .then(async (admin: any) => { + let givenObjInBuyer = _.find(buyerUser.wallet, (e) => e.currency.toString() === priceObj.currency.toString()) + let takenObjInBuyer = _.find(buyerUser.wallet, (e) => e.currency.toString() === rialObject.id.toString()) + if(!takenObjInBuyer) { + const takenCurrencyValueObject = { + currency : rialObject.id, + value : 0 + } + buyerUser.wallet.push(takenCurrencyValueObject) + takenObjInBuyer = takenCurrencyValueObject + } + const orderAcceptor = offers.map((individualOffer) => { + const buyOrderId = uuidv4() + const sellerId = individualOffer.userId + return User.findOne({_id : sellerId}).session(session) + .then(async (creator: any) => { + if(creator && creator._id.toString() === sellerId.toString()) { + let givenObjInCreWal = _.find(creator.wallet, (e) => e.currency.toString() === individualOffer.curGivenId.toString()) + if(givenObjInCreWal) { + // take from creator and give to buyer + givenObjInCreWal.commitment -= Number(individualOffer.curGivenVal) + let takenObjInCreWal = _.find(creator.wallet, (i) => i.currency.toString() === individualOffer.curTakenId.toString()) + if(takenObjInCreWal) { + takenObjInCreWal.value += individualOffer.curTakenVal + } else { + const currencyObj = { + currency : individualOffer.curTakenId, + value : individualOffer.curTakenVal + } + creator.wallet.push(currencyObj) + takenObjInCreWal = currencyObj + + } + takenObjInBuyer.value -= individualOffer.curTakenVal + givenObjInBuyer.value += individualOffer.curGivenVal + + const bodyAccOffer = { + acceptor : admin._id, + creator: sellerId, + offerId: individualOffer.offerId, + curGivenId: individualOffer.curGivenId, + curGivenVal: individualOffer.curGivenVal, + curTakenId: individualOffer.curTakenId, + curTakenVal: individualOffer.curTakenVal, + offeredDate: individualOffer.created_at, + expiredDate : individualOffer.expDate, + buyOrderId + } + await creator.save() + await Accepted_Offers.create([bodyAccOffer], { session }).catch((err)=>{ + throw (err) + }) + } else { + const error = new myError( + 'creator wallet does not have given object', + 400, + 5, + 'در کیف پول فرشنده ارز مورد نظر پیدا نشد', + 'خطا رخ داد' + ) + throw(error) + } + } + else { + const error = new myError( + 'failed to accept an offer', + 400, + 5, + 'موفق به پذیرش یک آفر نشدیم', + 'خطا رخ داد' + ) + throw(error) + } + }) + .catch((err) => { + throw(err) + }) + }) + return Promise.all(orderAcceptor) + .then(async()=> { + await buyerUser.save() + }) + .catch((err) => { + throw(err) + }) + }) + .catch((err)=>{ + throw(err) + }) + }) + .catch((err) => { + throw(err) + }) + } + }) + .catch((err) => { + throw (err) + }) + }) + .then(() => { + successRes(res, 'Buying process finished successfully', true, {}) + }) + .catch((err) => { + errorCounter-- + if(errorCounter==0){ + next(err) + } else { + throw(err) + } + }) + .finally(() => { + session.endSession() + }) + }, { + maxTimeout: 5000, + retries: 5 + } + ) + } else { + const session = await mongoose.startSession() + session.withTransaction(async() => { + return User.findOne({ _id : userId }).session(session) + .then(async (user: any) => { + let currencyWalInUser = _.find(user.wallet, (i) => { return i.currency.toString() === priceObj.currency.toString() }) + if(currencyWalInUser.value >= priceObj.quantity){ + return Admin.findOne({}).session(session) + .then(async (admin: any) => { + let rialWalInAdmin = _.find(admin.wallet, (i) => { return i.currency.toString() === rialObject.id.toString() }) + let curWalInUser = _.find(user.wallet, (i) => { return i.currency.toString() === currency.toString() }) + let rialWalInUser = _.find(user.wallet, (i) => { return i.currency.toString() === rialObject.id.toString() }) + let curWalInAdmin = _.find(admin.wallet, (i) => { return i.currency.toString() === currency.toString() }) + if(rialWalInUser ) { + rialWalInUser.value += Number(priceObj.rialPrice) + curWalInUser.value -= Number(priceObj.quantity) + curWalInAdmin.value += Number(priceObj.quantity) + rialWalInAdmin.value -= Number(priceObj.rialPrice) + await admin.save() + await user.save() + await priceObj.remove() + } else { + const bodyCurrency = { + currency : currency, + value : priceObj.quantity, + commitment : 0 + } + user.wallet.push(bodyCurrency) + rialWalInUser.value -= priceObj.rialPrice + rialWalInAdmin.value += priceObj.rialPrice + curWalInAdmin.value -=priceObj.quantity + await admin.save() + await user.save() + await priceObj.remove() + } + }) + } else { + const error = new myError( + 'User does not have enough rial credit in his/her wallet.', + 400, + 5, + 'کاربر ارز ریالی کافی برای خرید را ندارد.', + 'خطا رخ داد' + ) + throw(error) + } + }) + .catch((err) => { + throw(err) + }) + }) + .then(() => { + successRes(res, 'Buying process finished successfully', true, {}) + }) + .catch((err) => { + next(err) + }) + .finally(() => { + session.endSession() + }) + } + }) + .catch((err)=>{ + next(err) + }) + } else { + const error = new myError( + 'There is no price in GetPrice', + 400, + 5, + 'قیمت معادل ریالی پیدا نشد.', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err) => { + next(err) + }) + }) +) + + +walletRoutes.post('/transferFromExchange', +isAuthorized, +tryCatch((req, res, next) => { + const value = req.body.value + const currencyId = req.body.currencyId + const receiver = req.body.receiver + const userId = req.session.userId + transferFromExchangeApi(currencyId, value, receiver, userId) + .then((data) => { + successRes(res,"transaction completed please wait",data.txHash) + + }) + .catch((err)=>{ + next(err) + }) +})) + +walletRoutes.post('/transferToExchange', +tryCatch((req, res, next) => { + const signedRawTxHex = req.body.tx + const currencyId = req.body.currencyId + const userId = req.session.userId + const value = req.body.value + User.findOne({ _id : userId }) + .then((user) => { + if(user) { + let cur = _.find(user.wallet, (i) => { return i.currency.toString() === currencyId.toString() }) + if(cur) { + //invoke transferToExchangeApi + } else{ + const error = new myError( + 'currency not found in user wallet', + 400, + 5, + 'ارز مربوطه در کیف پول کاربر پیدا نشد.', + 'خطا رخ داد' + ) + next(error) + } + } else { + const error = new myError( + 'user not found', + 400, + 5, + 'کاربر پیدا نشد.', + 'خطا رخ داد' + ) + next(error) + } + }) + .catch((err)=>{ + next(err) + }) +})) + +walletRoutes.post('/transferToExchangeById', +isAuthorized, +tryCatch((req, res, next) => { + const txId = req.body.txId + const currencyId = req.body.currencyId + const userId = req.session.userId + transferToExchangeByIdApi(currencyId,txId,userId) + .then((txInf: any)=>{ + if(txInf.status === "successful") { + successRes(res,"you have the currency") + } else if(txInf.status === "pending") { + successRes(res,"please wait") + } + }) + .catch((err)=>{ + next(err) + }) +})) diff --git a/server/scripts/checkStatusOfTxbyId.ts b/server/scripts/checkStatusOfTxbyId.ts new file mode 100755 index 0000000..17d344e --- /dev/null +++ b/server/scripts/checkStatusOfTxbyId.ts @@ -0,0 +1,112 @@ +import * as mongoose from 'mongoose' +import * as _ from 'lodash' + +import { PendingTransfers } from '../db/pendingTransfers' +import { SuccessfulTransfers } from '../db/successfulTransfers' + +import * as redis from '../api/redis' +import * as bitcoin from '../api/walletApi/bitcoin' +import * as etherium from '../api/walletApi/etheriuem' +import * as tron from '../api/walletApi/tron' + +const checkStatusOfTxById = () => { + return PendingTransfers.find() + .then((txs) => { + return txs.map((e) => { + let info + let resObj + return redis.hashGetAll(e.currencyId.toString()) + .then(async (curObj: any) => { + if (curObj) { + switch (curObj.currencyName) { + case 'BTC': + bitcoin.bitcoinTransferToExchangeById(e.txId) + .then((result) => { + info = result + }) + .catch((err) => { + throw err + }) + break; + + case 'ETH': + break; + + case 'TRX': + break; + + default: + break; + } + if(info.status === 'Confirmed') { + const session = await mongoose.startSession() + return session.withTransaction(async () => { + return SuccessfulTransfers.findOne({ userId: e.userId }).session(session) + .then(async (doc) => { + if (!doc) { + const successDoc = { + userId: e.userId, + transactions: [{ + txId: e.txId, + currencyId: e.currencyId, + currencyName: e.currencyName, + value: e.value, + type: e.type + }] + } + await SuccessfulTransfers.create([successDoc], { session }) + await e.remove() + } else { + const theTx = _.find(doc.transactions, (v) => v.txId === e.txId) + if (!theTx) { + doc.transactions.push({ + txId: e.txId, + currencyId: e.currencyId, + currencyName: e.currencyName, + value: e.value, + type: e.type + }) + await doc.save() + await e.remove() + } else { + console.log('reapeted tx!') + await e.remove() + return + } + } + }) + .catch((err) => { + console.log(err) + return + }) + }) + .then(() => { + return resObj + }) + .catch((err) => { + console.log(err) + return + }) + .finally(() => { + session.endSession() + }) + } else { + return + } + } else { + console.log('No currency info') + return + } + }) + .catch((err) => { + console.log(err) + return + }) + }) + }) + .catch((err) => { + console.log(err) + }) +} + +export default checkStatusOfTxById; \ No newline at end of file diff --git a/server/scripts/currenciesadder.js b/server/scripts/currenciesadder.js new file mode 100755 index 0000000..577dc55 --- /dev/null +++ b/server/scripts/currenciesadder.js @@ -0,0 +1,40 @@ +"use strict"; +exports.__esModule = true; +exports.curreniesAdder = void 0; +var redis = require("../api/redis"); +var currencies_1 = require("../db/currencies"); +exports.curreniesAdder = function () { + currencies_1.Currencies.find() + .then(function (currs) { + var currsMap = currs.map(function (cur) { + var curInfo = { + currencyName: cur.name, + ab_name: cur.ab_name, + per_name: cur.per_name, + icon: cur.icon, + quantity: cur.quantity + }; + var curInfo2 = { + currencyName: cur.name, + ab_name: cur.ab_name, + per_name: cur.per_name, + icon: cur.icon, + quantity: cur.quantity, + id: cur._id.toString() + }; + return redis.hashHMset(cur.name.toString(), curInfo2).then(function () { + return redis.hashHMset(cur._id.toString(), curInfo); + }) + .then(function (added) { + console.log("added to redis successfully", added); + })["catch"](function (err) { + console.log("the error is =>", err); + }); + }); + Promise.all(currsMap)["catch"](function (err) { + console.log(err); + }); + })["catch"](function (err) { + console.log(err); + }); +}; diff --git a/server/scripts/currenciesadder.ts b/server/scripts/currenciesadder.ts new file mode 100755 index 0000000..04d28b1 --- /dev/null +++ b/server/scripts/currenciesadder.ts @@ -0,0 +1,43 @@ +import * as redis from '../api/redis' +import { Currencies } from '../db/currencies' + + +export const curreniesAdder = ()=>{ + Currencies.find() + .then((currs) => { + const currsMap = currs.map((cur) => { + let curInfo = { + currencyName :cur.name, + ab_name: cur.ab_name , + per_name: cur.per_name, + icon: cur.icon, + quantity: cur.quantity + } + let curInfo2 = { + currencyName :cur.name, + ab_name: cur.ab_name , + per_name: cur.per_name, + icon: cur.icon, + quantity: cur.quantity, + id : cur._id.toString() + } + return redis.hashHMset(cur.name.toString(), curInfo2).then(()=>{ + return redis.hashHMset(cur._id.toString(), curInfo) + }) + .then((added) => { + console.log("added to redis successfully", added) + }) + .catch((err)=>{ + console.log("the error is =>",err) + }) + }) + Promise.all(currsMap) + .catch((err) => { + console.log(err) + }) + }) + .catch((err)=>{ + console.log(err) + }) +} + diff --git a/server/scripts/dollarToRial.js b/server/scripts/dollarToRial.js new file mode 100755 index 0000000..a39fe89 --- /dev/null +++ b/server/scripts/dollarToRial.js @@ -0,0 +1,20 @@ +"use strict"; +exports.__esModule = true; +exports.addDollarPrice = void 0; +var redis = require("../api/redis"); +var fetch = require('node-fetch'); +exports.addDollarPrice = function () { + fetch("https://api.tgju.online/v1/data/sana/json") + .then(function (res) { return res.json(); }) + .then(function (json) { + var price = Number(json['sana']['data'][16]['p']); + redis.hashset("dollarPrice", price) + .then(function (added) { + console.log("price of dollar added to redis", added); + })["catch"](function (err) { + console.log("error is ", err); + }); + })["catch"](function (err) { + console.log("error is", err); + }); +}; diff --git a/server/scripts/dollarToRial.ts b/server/scripts/dollarToRial.ts new file mode 100755 index 0000000..83edb9c --- /dev/null +++ b/server/scripts/dollarToRial.ts @@ -0,0 +1,21 @@ +import * as redis from '../api/redis' +const fetch = require('node-fetch'); + + +export const addDollarPrice = () => { + fetch("https://api.tgju.online/v1/data/sana/json") + .then(res => res.json()) + .then( json => { + const price = Number(json['sana']['data'][16]['p']) + redis.hashset("dollarPrice", price) + .then((added) => { + console.log("price of dollar added to redis" , added) + }) + .catch((err) => { + console.log("error is ", err) + }) + }) + .catch((err) => { + console.log("error is", err ) + }) +} \ No newline at end of file diff --git a/server/scripts/localDailySetPrice.js b/server/scripts/localDailySetPrice.js new file mode 100755 index 0000000..0c225c7 --- /dev/null +++ b/server/scripts/localDailySetPrice.js @@ -0,0 +1,221 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.localDailySetPrice = void 0; +var localDaily_1 = require("../db/localDaily"); +var acceptedOffers_1 = require("../db/acceptedOffers"); +var moment = require("moment"); +require("moment-timezone"); +var currencies_1 = require("../db/currencies"); +var _ = require("lodash"); +exports.localDailySetPrice = function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + currencies_1.Currencies.find() + .then(function (curs) { + if (curs) { + console.log('the curs is ....>', curs); + var rialObj_1 = _.find(curs, function (i) { return i.ab_name === "IRR"; }); + if (rialObj_1) { + var nowDay_1 = moment().tz('Iran').startOf('days'); + var ago = moment(nowDay_1).subtract(1, 'days'); + console.log("rial is founded .....> ", rialObj_1); + console.log("the now days is...>", nowDay_1); + localDaily_1.LocalDaily.findOne().sort({ name: -1 }).limit(1) + .then(function (lastDoc) { + if (lastDoc) { + console.log("last document was founded", lastDoc); + var lastSavedDay = moment(lastDoc.name).startOf('days').valueOf(); + console.log("first last saved days is....", lastSavedDay); + console.log("second last saved day is....", lastSavedDay); + var lostedDays = moment.duration(nowDay_1.diff(lastSavedDay)).asDays(); + console.log("losted days is....", lostedDays); + var i = void 0; + var _loop_1 = function () { + console.log("in for", i); + var curArr = []; + var lstSavedDay = lastSavedDay; + var startDay = moment(lstSavedDay).add((i - 1), 'days'); + var nextDay = moment(lstSavedDay).add((i), 'days'); + console.log("the start Day is...>", startDay); + console.log("the next Day is...>", nextDay); + acceptedOffers_1.Accepted_Offers.find({ + created_at: { + $gt: startDay, + $lte: nextDay + } + }).then(function (offers) { + if (offers[0]) { + console.log('offer was foundeddddd ...>', offers); + var curIds_1 = []; + offers.forEach(function (off) { + console.log('offer was founded ...>', off); + if (off.curGivenId.toString() === rialObj_1._id.toString()) { + console.log('given is rial'); + if (!(curIds_1.includes(off.curTakenId.toString()))) { + curIds_1.push(off.curTakenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curTakenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curTakenVal); + curObj.price = Number(off.curGivenId); + if (Number(off.curGivenId) < Number(curObj.min)) + curObj.min = Number(off.curGivenId); + if (Number(off.curGivenId) > Number(curObj.max)) + curObj.max = Number(off.curGivenId); + } + else { + curArr.push({ + currencyId: off.curTakenId, + price: Number(off.curTakenVal), + volume: Number(off.curTakenVal), + min: Number(off.curGivenId), + max: Number(off.curGivenId) + }); + } + } + else if (off.curTakenId.toString() === rialObj_1._id.toString()) { + console.log('taken is rial'); + if (!(curIds_1.includes(off.curGivenId.toString()))) { + curIds_1.push(off.curGivenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curGivenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curGivenVal); + curObj.price = Number(off.curTakenVal); + if (off.curTakenVal < curObj.min) + curObj.min = Number(off.curTakenVal); + if (off.curTakenVal > curObj.max) + curObj.max = Number(off.curTakenVal); + } + else { + curArr.push({ + currencyId: off.curGivenId, + price: Number(off.curGivenVal), + volume: Number(off.curGivenVal), + min: Number(off.curTakenVal), + max: Number(off.curTakenVal) + }); + } + } + }); + console.log("curids isssss", curIds_1); + if (curs.length - 1 !== curIds_1.length) { + console.log("yes"); + curs.forEach(function (cur) { + if (!(curIds_1.includes(cur._id.toString())) && cur._id.toString() != rialObj_1._id.toString()) { + console.log(cur._id); + curArr.push({ + price: 0, + currencyId: cur._id, + volume: 0, + min: 0, + max: 0 + }); + } + }); + } + var doc = { + name: nextDay, + currencies: curArr + }; + localDaily_1.LocalDaily.create([doc]); + } + else { + console.log("offer not found"); + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nextDay, + currencies: curArr + }; + localDaily_1.LocalDaily.create([doc]); + } + })["catch"](function (err) { + console.log("the error is", err); + }); + }; + for (i = 1; i <= lostedDays; i++) { + _loop_1(); + } + } + else { + var curArr2_1 = []; + console.log("last document was not founded"); + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr2_1.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nowDay_1, + currencies: curArr2_1 + }; + localDaily_1.LocalDaily.create([doc]); + } + })["catch"](function (err) { + console.log(err); + }); + } + else { + console.log("rial is not exsist on database"); + } + } + else { + console.log("there is no currency on database"); + } + })["catch"](function (err) { + console.log(err); + }); + return [2 /*return*/]; + }); +}); }; diff --git a/server/scripts/localHourlySetPrice.js b/server/scripts/localHourlySetPrice.js new file mode 100755 index 0000000..8d0954c --- /dev/null +++ b/server/scripts/localHourlySetPrice.js @@ -0,0 +1,222 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.localHourlySetPrice = void 0; +var localHourly_1 = require("../db/localHourly"); +var acceptedOffers_1 = require("../db/acceptedOffers"); +var moment = require("moment"); +require("moment-timezone"); +var currencies_1 = require("../db/currencies"); +var _ = require("lodash"); +exports.localHourlySetPrice = function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + currencies_1.Currencies.find() + .then(function (curs) { + if (curs) { + console.log('the curs is ....>', curs); + var rialObj_1 = _.find(curs, function (i) { return i.ab_name === "IRR"; }); + if (rialObj_1) { + var nowHour_1 = moment().tz('Iran').startOf('hours'); + var ago = moment(nowHour_1).subtract(1, 'hours'); + console.log("rial is founded .....> ", rialObj_1); + console.log("the now hours is...>", nowHour_1); + //let nextHour = moment(nowHour).add(1, 'hours') + localHourly_1.LocalHourly.findOne().sort({ name: -1 }).limit(1) + .then(function (lastDoc) { + if (lastDoc) { + console.log("last document was founded", lastDoc); + var lastSavedHour = moment(lastDoc.name).startOf('hours').valueOf(); + console.log("first last saved hours is....", lastSavedHour); + console.log("second last saved hours is....", lastSavedHour); + var lostedHours = moment.duration(nowHour_1.diff(lastSavedHour)).asHours(); + console.log("losted hours is....", lostedHours); + var i = void 0; + var _loop_1 = function () { + console.log("in for", i); + var curArr = []; + var lstSavedHour = lastSavedHour; + var startHour = moment(lstSavedHour).add((i - 1), 'hours'); + var nextHour = moment(lstSavedHour).add((i), 'hours'); + console.log("the start hour is...>", startHour); + console.log("the next hour hours is...>", nextHour); + acceptedOffers_1.Accepted_Offers.find({ + created_at: { + $gt: startHour, + $lte: nextHour + } + }).then(function (offers) { + if (offers[0]) { + console.log('offer was foundeddddd ...>', offers); + var curIds_1 = []; + offers.forEach(function (off) { + console.log('offer was founded ...>', off); + if (off.curGivenId.toString() === rialObj_1._id.toString()) { + console.log('given is rial'); + if (!(curIds_1.includes(off.curTakenId.toString()))) { + curIds_1.push(off.curTakenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curTakenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curTakenVal); + curObj.price = Number(off.curGivenId); + if (Number(off.curGivenId) < Number(curObj.min)) + curObj.min = Number(off.curGivenId); + if (Number(off.curGivenId) > Number(curObj.max)) + curObj.max = Number(off.curGivenId); + } + else { + curArr.push({ + currencyId: off.curTakenId, + price: Number(off.curTakenVal), + volume: Number(off.curTakenVal), + min: Number(off.curGivenId), + max: Number(off.curGivenId) + }); + } + } + else if (off.curTakenId.toString() === rialObj_1._id.toString()) { + console.log('taken is rial'); + if (!(curIds_1.includes(off.curGivenId.toString()))) { + curIds_1.push(off.curGivenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curGivenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curGivenVal); + curObj.price = Number(off.curTakenVal); + if (off.curTakenVal < curObj.min) + curObj.min = Number(off.curTakenVal); + if (off.curTakenVal > curObj.max) + curObj.max = Number(off.curTakenVal); + } + else { + curArr.push({ + currencyId: off.curGivenId, + price: Number(off.curGivenVal), + volume: Number(off.curGivenVal), + min: Number(off.curTakenVal), + max: Number(off.curTakenVal) + }); + } + } + }); + console.log("curids isssss", curIds_1); + if (curs.length - 1 !== curIds_1.length) { + console.log("yes"); + curs.forEach(function (cur) { + if (!(curIds_1.includes(cur._id.toString())) && cur._id.toString() != rialObj_1._id.toString()) { + console.log(cur._id); + curArr.push({ + price: 0, + currencyId: cur._id, + volume: 0, + min: 0, + max: 0 + }); + } + }); + } + var doc = { + name: nextHour, + currencies: curArr + }; + localHourly_1.LocalHourly.create([doc]); + } + else { + console.log("offer not found"); + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nextHour, + currencies: curArr + }; + localHourly_1.LocalHourly.create([doc]); + } + })["catch"](function (err) { + console.log("the error is", err); + }); + }; + for (i = 1; i <= lostedHours; i++) { + _loop_1(); + } + } + else { + var curArr2_1 = []; + console.log("last document was not founded"); + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr2_1.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nowHour_1, + currencies: curArr2_1 + }; + localHourly_1.LocalHourly.create([doc]); + } + })["catch"](function (err) { + console.log(err); + }); + } + else { + console.log("rial is not exsist on database"); + } + } + else { + console.log("there is no currency on database"); + } + })["catch"](function (err) { + console.log(err); + }); + return [2 /*return*/]; + }); +}); }; diff --git a/server/scripts/localMonthlySetPrice.js b/server/scripts/localMonthlySetPrice.js new file mode 100755 index 0000000..144e88d --- /dev/null +++ b/server/scripts/localMonthlySetPrice.js @@ -0,0 +1,214 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.localMonthlySetPrice = void 0; +var acceptedOffers_1 = require("../db/acceptedOffers"); +var moment = require("moment"); +require("moment-timezone"); +var currencies_1 = require("../db/currencies"); +var _ = require("lodash"); +var localMonthly_1 = require("../db/localMonthly"); +exports.localMonthlySetPrice = function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + currencies_1.Currencies.find() + .then(function (curs) { + if (curs) { + var rialObj_1 = _.find(curs, function (i) { return i.ab_name === "IRR"; }); + if (rialObj_1) { + var nowMonth_1 = moment().tz('Iran').startOf('month'); + var ago = moment(nowMonth_1).subtract(1, 'month'); + console.log("rial is founded .....> ", rialObj_1); + console.log("the now months is...>", nowMonth_1); + localMonthly_1.LocalMonthly.findOne().sort({ name: -1 }).limit(1) + .then(function (lastDoc) { + if (lastDoc) { + console.log("last document was founded", lastDoc); + var lastSavedMonth = moment(lastDoc.name).startOf('month').valueOf(); + console.log("first last saved months is....", lastSavedMonth); + console.log("second last saved month is....", lastSavedMonth); + var lostedMonths = moment.duration(nowMonth_1.diff(lastSavedMonth)).asMonths(); + console.log("losted month is....", lostedMonths); + var i = void 0; + var _loop_1 = function () { + console.log("in for", i); + var curArr = []; + var lstSavedMonth = lastSavedMonth; + var startMonth = moment(lstSavedMonth).add((i - 1), 'month'); + var nextMonth = moment(lstSavedMonth).add((i), 'month'); + console.log("the start month is...>", startMonth); + console.log("the next month is...>", nextMonth); + acceptedOffers_1.Accepted_Offers.find({ + created_at: { + $gt: startMonth, + $lte: nextMonth + } + }).then(function (offers) { + if (offers[0]) { + var curIds_1 = []; + offers.forEach(function (off) { + if (off.curGivenId.toString() === rialObj_1._id.toString()) { + if (!(curIds_1.includes(off.curTakenId.toString()))) { + curIds_1.push(off.curTakenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curTakenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curTakenVal); + curObj.price = Number(off.curGivenId); + if (Number(off.curGivenId) < Number(curObj.min)) + curObj.min = Number(off.curGivenId); + if (Number(off.curGivenId) > Number(curObj.max)) + curObj.max = Number(off.curGivenId); + } + else { + curArr.push({ + currencyId: off.curTakenId, + price: Number(off.curTakenVal), + volume: Number(off.curTakenVal), + min: Number(off.curGivenId), + max: Number(off.curGivenId) + }); + } + } + else if (off.curTakenId.toString() === rialObj_1._id.toString()) { + if (!(curIds_1.includes(off.curGivenId.toString()))) { + curIds_1.push(off.curGivenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curGivenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curGivenVal); + curObj.price = Number(off.curTakenVal); + if (off.curTakenVal < curObj.min) + curObj.min = Number(off.curTakenVal); + if (off.curTakenVal > curObj.max) + curObj.max = Number(off.curTakenVal); + } + else { + curArr.push({ + currencyId: off.curGivenId, + price: Number(off.curGivenVal), + volume: Number(off.curGivenVal), + min: Number(off.curTakenVal), + max: Number(off.curTakenVal) + }); + } + } + }); + if (curs.length - 1 !== curIds_1.length) { + console.log("yes"); + curs.forEach(function (cur) { + if (!(curIds_1.includes(cur._id.toString())) && cur._id.toString() != rialObj_1._id.toString()) { + console.log(cur._id); + curArr.push({ + price: 0, + currencyId: cur._id, + volume: 0, + min: 0, + max: 0 + }); + } + }); + } + var doc = { + name: nextMonth, + currencies: curArr + }; + localMonthly_1.LocalMonthly.create([doc]); + } + else { + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nextMonth, + currencies: curArr + }; + localMonthly_1.LocalMonthly.create([doc]); + } + })["catch"](function (err) { + console.log("the error is", err); + }); + }; + for (i = 1; i <= lostedMonths; i++) { + _loop_1(); + } + } + else { + var curArr2_1 = []; + console.log("last document was not founded"); + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr2_1.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nowMonth_1, + currencies: curArr2_1 + }; + localMonthly_1.LocalMonthly.create([doc]); + } + })["catch"](function (err) { + console.log(err); + }); + } + else { + console.log("rial is not exsist on database"); + } + } + else { + console.log("there is no currency on database"); + } + })["catch"](function (err) { + console.log(err); + }); + return [2 /*return*/]; + }); +}); }; diff --git a/server/scripts/localPriceScript.js b/server/scripts/localPriceScript.js new file mode 100755 index 0000000..86a7623 --- /dev/null +++ b/server/scripts/localPriceScript.js @@ -0,0 +1,874 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.localYearlySetPrice = exports.localMonthlySetPrice = exports.localWeeklySetPrice = exports.localDailySetPrice = exports.localHourlySetPrice = void 0; +var localDaily_1 = require("../db/localDaily"); +var localHourly_1 = require("../db/localHourly"); +var localMonthly_1 = require("../db/localMonthly"); +var localWeekly_1 = require("../db/localWeekly"); +var localYearly_1 = require("../db/localYearly"); +var acceptedOffers_1 = require("../db/acceptedOffers"); +var moment = require("moment"); +require("moment-timezone"); +var currencies_1 = require("../db/currencies"); +var _ = require("lodash"); +exports.localHourlySetPrice = function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + currencies_1.Currencies.find() + .then(function (curs) { + if (curs) { + var rialObj_1 = _.find(curs, function (i) { return i.ab_name === "IRR"; }); + if (rialObj_1) { + var nowHour_1 = moment().tz('Iran').startOf('hours'); + var ago = moment(nowHour_1).subtract(1, 'hours'); + localHourly_1.LocalHourly.findOne().sort({ name: -1 }).limit(1) + .then(function (lastDoc) { + if (lastDoc) { + var lastSavedHour = moment(lastDoc.name).startOf('hours').valueOf(); + var lostedHours = moment.duration(nowHour_1.diff(lastSavedHour)).asHours(); + var i = void 0; + var _loop_1 = function () { + console.log("in for", i); + var curArr = []; + var lstSavedHour = lastSavedHour; + var startHour = moment(lstSavedHour).add((i - 1), 'hours'); + var nextHour = moment(lstSavedHour).add((i), 'hours'); + acceptedOffers_1.Accepted_Offers.find({ + created_at: { + $gt: startHour, + $lte: nextHour + } + }) + .then(function (offers) { + if (offers[0]) { + var curIds_1 = []; + offers.forEach(function (off) { + if (off.curGivenId.toString() === rialObj_1._id.toString()) { + if (!(curIds_1.includes(off.curTakenId.toString()))) { + curIds_1.push(off.curTakenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curTakenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curTakenVal); + curObj.price = Number(off.curGivenId); + if (Number(off.curGivenId) < Number(curObj.min)) + curObj.min = Number(off.curGivenId); + if (Number(off.curGivenId) > Number(curObj.max)) + curObj.max = Number(off.curGivenId); + } + else { + curArr.push({ + currencyId: off.curTakenId, + price: Number(off.curTakenVal), + volume: Number(off.curTakenVal), + min: Number(off.curGivenId), + max: Number(off.curGivenId) + }); + } + } + else if (off.curTakenId.toString() === rialObj_1._id.toString()) { + if (!(curIds_1.includes(off.curGivenId.toString()))) { + curIds_1.push(off.curGivenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curGivenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curGivenVal); + curObj.price = Number(off.curTakenVal); + if (off.curTakenVal < curObj.min) + curObj.min = Number(off.curTakenVal); + if (off.curTakenVal > curObj.max) + curObj.max = Number(off.curTakenVal); + } + else { + curArr.push({ + currencyId: off.curGivenId, + price: Number(off.curGivenVal), + volume: Number(off.curGivenVal), + min: Number(off.curTakenVal), + max: Number(off.curTakenVal) + }); + } + } + }); + if (curs.length - 1 !== curIds_1.length) { + curs.forEach(function (cur) { + if (!(curIds_1.includes(cur._id.toString())) && cur._id.toString() != rialObj_1._id.toString()) { + console.log(cur._id); + curArr.push({ + price: 0, + currencyId: cur._id, + volume: 0, + min: 0, + max: 0 + }); + } + }); + } + var doc = { + name: nextHour, + currencies: curArr + }; + localHourly_1.LocalHourly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + else { + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nextHour, + currencies: curArr + }; + localHourly_1.LocalHourly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + })["catch"](function (err) { + console.log("the error is", err); + }); + }; + for (i = 1; i <= lostedHours; i++) { + _loop_1(); + } + } + else { + var curArr2_1 = []; + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr2_1.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nowHour_1, + currencies: curArr2_1 + }; + localHourly_1.LocalHourly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + })["catch"](function (err) { + console.log(err); + }); + } + else { + console.log("rial is not exsist on database"); + } + } + else { + console.log("there is no currency on database"); + } + })["catch"](function (err) { + console.log(err); + }); + return [2 /*return*/]; + }); +}); }; +exports.localDailySetPrice = function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + currencies_1.Currencies.find() + .then(function (curs) { + if (curs) { + var rialObj_2 = _.find(curs, function (i) { return i.ab_name === "IRR"; }); + if (rialObj_2) { + var nowDay_1 = moment().tz('Iran').startOf('days'); + var ago = moment(nowDay_1).subtract(1, 'days'); + localDaily_1.LocalDaily.findOne().sort({ name: -1 }).limit(1) + .then(function (lastDoc) { + if (lastDoc) { + var lastSavedDay = moment(lastDoc.name).startOf('days').valueOf(); + var lostedDays = moment.duration(nowDay_1.diff(lastSavedDay)).asDays(); + var i = void 0; + var _loop_2 = function () { + var curArr = []; + var lstSavedDay = lastSavedDay; + var startDay = moment(lstSavedDay).add((i - 1), 'days'); + var nextDay = moment(lstSavedDay).add((i), 'days'); + acceptedOffers_1.Accepted_Offers.find({ + created_at: { + $gt: startDay, + $lte: nextDay + } + }).then(function (offers) { + if (offers[0]) { + var curIds_2 = []; + offers.forEach(function (off) { + if (off.curGivenId.toString() === rialObj_2._id.toString()) { + if (!(curIds_2.includes(off.curTakenId.toString()))) { + curIds_2.push(off.curTakenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curTakenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curTakenVal); + curObj.price = Number(off.curGivenId); + if (Number(off.curGivenId) < Number(curObj.min)) + curObj.min = Number(off.curGivenId); + if (Number(off.curGivenId) > Number(curObj.max)) + curObj.max = Number(off.curGivenId); + } + else { + curArr.push({ + currencyId: off.curTakenId, + price: Number(off.curTakenVal), + volume: Number(off.curTakenVal), + min: Number(off.curGivenId), + max: Number(off.curGivenId) + }); + } + } + else if (off.curTakenId.toString() === rialObj_2._id.toString()) { + if (!(curIds_2.includes(off.curGivenId.toString()))) { + curIds_2.push(off.curGivenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curGivenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curGivenVal); + curObj.price = Number(off.curTakenVal); + if (off.curTakenVal < curObj.min) + curObj.min = Number(off.curTakenVal); + if (off.curTakenVal > curObj.max) + curObj.max = Number(off.curTakenVal); + } + else { + curArr.push({ + currencyId: off.curGivenId, + price: Number(off.curGivenVal), + volume: Number(off.curGivenVal), + min: Number(off.curTakenVal), + max: Number(off.curTakenVal) + }); + } + } + }); + if (curs.length - 1 !== curIds_2.length) { + curs.forEach(function (cur) { + if (!(curIds_2.includes(cur._id.toString())) && cur._id.toString() != rialObj_2._id.toString()) { + console.log(cur._id); + curArr.push({ + price: 0, + currencyId: cur._id, + volume: 0, + min: 0, + max: 0 + }); + } + }); + } + var doc = { + name: nextDay, + currencies: curArr + }; + localDaily_1.LocalDaily.create([doc])["catch"](function (err) { + console.log(err); + }); + } + else { + curs.forEach(function (cur) { + if (cur._id != rialObj_2._id) { + curArr.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nextDay, + currencies: curArr + }; + localDaily_1.LocalDaily.create([doc])["catch"](function (err) { + console.log(err); + }); + } + })["catch"](function (err) { + console.log("the error is", err); + }); + }; + for (i = 1; i <= lostedDays; i++) { + _loop_2(); + } + } + else { + var curArr2_2 = []; + curs.forEach(function (cur) { + if (cur._id != rialObj_2._id) { + curArr2_2.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nowDay_1, + currencies: curArr2_2 + }; + localDaily_1.LocalDaily.create([doc])["catch"](function (err) { + console.log(err); + }); + } + })["catch"](function (err) { + console.log(err); + }); + } + else { + console.log("rial is not exsist on database"); + } + } + else { + console.log("there is no currency on database"); + } + })["catch"](function (err) { + console.log(err); + }); + return [2 /*return*/]; + }); +}); }; +exports.localWeeklySetPrice = function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + currencies_1.Currencies.find() + .then(function (curs) { + if (curs) { + var rialObj_3 = _.find(curs, function (i) { return i.ab_name === "IRR"; }); + if (rialObj_3) { + var nowWeek_1 = moment().tz('Iran').startOf('weeks'); + var ago = moment(nowWeek_1).subtract(1, 'weeks'); + localWeekly_1.LocalWeekly.findOne().sort({ name: -1 }).limit(1) + .then(function (lastDoc) { + if (lastDoc) { + var lastSavedWeek = moment(lastDoc.name).startOf('weeks').valueOf(); + var lostedWeeks = moment.duration(nowWeek_1.diff(lastSavedWeek)).asWeeks(); + var i = void 0; + var _loop_3 = function () { + var curArr = []; + var lstSavedWeek = lastSavedWeek; + var startWeek = moment(lstSavedWeek).add((i - 1), 'weeks'); + var nextWeek = moment(lstSavedWeek).add((i), 'weeks'); + acceptedOffers_1.Accepted_Offers.find({ + created_at: { + $gt: startWeek, + $lte: nextWeek + } + }) + .then(function (offers) { + if (offers[0]) { + var curIds_3 = []; + offers.forEach(function (off) { + if (off.curGivenId.toString() === rialObj_3._id.toString()) { + if (!(curIds_3.includes(off.curTakenId.toString()))) { + curIds_3.push(off.curTakenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curTakenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curTakenVal); + curObj.price = Number(off.curGivenId); + if (Number(off.curGivenId) < Number(curObj.min)) + curObj.min = Number(off.curGivenId); + if (Number(off.curGivenId) > Number(curObj.max)) + curObj.max = Number(off.curGivenId); + } + else { + curArr.push({ + currencyId: off.curTakenId, + price: Number(off.curTakenVal), + volume: Number(off.curTakenVal), + min: Number(off.curGivenId), + max: Number(off.curGivenId) + }); + } + } + else if (off.curTakenId.toString() === rialObj_3._id.toString()) { + if (!(curIds_3.includes(off.curGivenId.toString()))) { + curIds_3.push(off.curGivenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curGivenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curGivenVal); + curObj.price = Number(off.curTakenVal); + if (off.curTakenVal < curObj.min) + curObj.min = Number(off.curTakenVal); + if (off.curTakenVal > curObj.max) + curObj.max = Number(off.curTakenVal); + } + else { + curArr.push({ + currencyId: off.curGivenId, + price: Number(off.curGivenVal), + volume: Number(off.curGivenVal), + min: Number(off.curTakenVal), + max: Number(off.curTakenVal) + }); + } + } + }); + if (curs.length - 1 !== curIds_3.length) { + curs.forEach(function (cur) { + if (!(curIds_3.includes(cur._id.toString())) && cur._id.toString() != rialObj_3._id.toString()) { + console.log(cur._id); + curArr.push({ + price: 0, + currencyId: cur._id, + volume: 0, + min: 0, + max: 0 + }); + } + }); + } + var doc = { + name: nextWeek, + currencies: curArr + }; + localWeekly_1.LocalWeekly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + else { + curs.forEach(function (cur) { + if (cur._id != rialObj_3._id) { + curArr.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nextWeek, + currencies: curArr + }; + localWeekly_1.LocalWeekly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + })["catch"](function (err) { + console.log("the error is", err); + }); + }; + for (i = 1; i <= lostedWeeks; i++) { + _loop_3(); + } + } + else { + var curArr2_3 = []; + curs.forEach(function (cur) { + if (cur._id != rialObj_3._id) { + curArr2_3.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nowWeek_1, + currencies: curArr2_3 + }; + localWeekly_1.LocalWeekly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + })["catch"](function (err) { + console.log(err); + }); + } + else { + console.log("rial is not exsist on database"); + } + } + else { + console.log("there is no currency on database"); + } + })["catch"](function (err) { + console.log(err); + }); + return [2 /*return*/]; + }); +}); }; +exports.localMonthlySetPrice = function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + currencies_1.Currencies.find() + .then(function (curs) { + if (curs) { + var rialObj_4 = _.find(curs, function (i) { return i.ab_name === "IRR"; }); + if (rialObj_4) { + var nowMonth_1 = moment().tz('Iran').startOf('month'); + var ago = moment(nowMonth_1).subtract(1, 'month'); + localMonthly_1.LocalMonthly.findOne().sort({ name: -1 }).limit(1) + .then(function (lastDoc) { + if (lastDoc) { + var lastSavedMonth = moment(lastDoc.name).startOf('month').valueOf(); + var lostedMonths = moment.duration(nowMonth_1.diff(lastSavedMonth)).asMonths(); + var i = void 0; + var _loop_4 = function () { + var curArr = []; + var lstSavedMonth = lastSavedMonth; + var startMonth = moment(lstSavedMonth).add((i - 1), 'month'); + var nextMonth = moment(lstSavedMonth).add((i), 'month'); + acceptedOffers_1.Accepted_Offers.find({ + created_at: { + $gt: startMonth, + $lte: nextMonth + } + }) + .then(function (offers) { + if (offers[0]) { + var curIds_4 = []; + offers.forEach(function (off) { + if (off.curGivenId.toString() === rialObj_4._id.toString()) { + if (!(curIds_4.includes(off.curTakenId.toString()))) { + curIds_4.push(off.curTakenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curTakenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curTakenVal); + curObj.price = Number(off.curGivenId); + if (Number(off.curGivenId) < Number(curObj.min)) + curObj.min = Number(off.curGivenId); + if (Number(off.curGivenId) > Number(curObj.max)) + curObj.max = Number(off.curGivenId); + } + else { + curArr.push({ + currencyId: off.curTakenId, + price: Number(off.curTakenVal), + volume: Number(off.curTakenVal), + min: Number(off.curGivenId), + max: Number(off.curGivenId) + }); + } + } + else if (off.curTakenId.toString() === rialObj_4._id.toString()) { + if (!(curIds_4.includes(off.curGivenId.toString()))) { + curIds_4.push(off.curGivenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curGivenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curGivenVal); + curObj.price = Number(off.curTakenVal); + if (off.curTakenVal < curObj.min) + curObj.min = Number(off.curTakenVal); + if (off.curTakenVal > curObj.max) + curObj.max = Number(off.curTakenVal); + } + else { + curArr.push({ + currencyId: off.curGivenId, + price: Number(off.curGivenVal), + volume: Number(off.curGivenVal), + min: Number(off.curTakenVal), + max: Number(off.curTakenVal) + }); + } + } + }); + if (curs.length - 1 !== curIds_4.length) { + curs.forEach(function (cur) { + if (!(curIds_4.includes(cur._id.toString())) && cur._id.toString() != rialObj_4._id.toString()) { + console.log(cur._id); + curArr.push({ + price: 0, + currencyId: cur._id, + volume: 0, + min: 0, + max: 0 + }); + } + }); + } + var doc = { + name: nextMonth, + currencies: curArr + }; + localMonthly_1.LocalMonthly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + else { + curs.forEach(function (cur) { + if (cur._id != rialObj_4._id) { + curArr.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nextMonth, + currencies: curArr + }; + localMonthly_1.LocalMonthly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + })["catch"](function (err) { + console.log("the error is", err); + }); + }; + for (i = 1; i <= lostedMonths; i++) { + _loop_4(); + } + } + else { + var curArr2_4 = []; + curs.forEach(function (cur) { + if (cur._id != rialObj_4._id) { + curArr2_4.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nowMonth_1, + currencies: curArr2_4 + }; + localMonthly_1.LocalMonthly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + })["catch"](function (err) { + console.log(err); + }); + } + else { + console.log("rial is not exsist on database"); + } + } + else { + console.log("there is no currency on database"); + } + })["catch"](function (err) { + console.log(err); + }); + return [2 /*return*/]; + }); +}); }; +exports.localYearlySetPrice = function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + currencies_1.Currencies.find() + .then(function (curs) { + if (curs) { + var rialObj_5 = _.find(curs, function (i) { return i.ab_name === "IRR"; }); + if (rialObj_5) { + var nowYear_1 = moment().tz('Iran').startOf('year'); + var ago = moment(nowYear_1).subtract(1, 'year'); + localYearly_1.LocalYearly.findOne().sort({ name: -1 }).limit(1) + .then(function (lastDoc) { + if (lastDoc) { + var lastSavedYear = moment(lastDoc.name).startOf('year').valueOf(); + var lostedYears = moment.duration(nowYear_1.diff(lastSavedYear)).asYears(); + var i = void 0; + var _loop_5 = function () { + var curArr = []; + var lstSavedYear = lastSavedYear; + var startYear = moment(lstSavedYear).add((i - 1), 'year'); + var nextYear = moment(lstSavedYear).add((i), 'year'); + acceptedOffers_1.Accepted_Offers.find({ + created_at: { + $gt: startYear, + $lte: nextYear + } + }) + .then(function (offers) { + if (offers[0]) { + var curIds_5 = []; + offers.forEach(function (off) { + if (off.curGivenId.toString() === rialObj_5._id.toString()) { + if (!(curIds_5.includes(off.curTakenId.toString()))) { + curIds_5.push(off.curTakenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curTakenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curTakenVal); + curObj.price = Number(off.curGivenId); + if (Number(off.curGivenId) < Number(curObj.min)) + curObj.min = Number(off.curGivenId); + if (Number(off.curGivenId) > Number(curObj.max)) + curObj.max = Number(off.curGivenId); + } + else { + curArr.push({ + currencyId: off.curTakenId, + price: Number(off.curTakenVal), + volume: Number(off.curTakenVal), + min: Number(off.curGivenId), + max: Number(off.curGivenId) + }); + } + } + else if (off.curTakenId.toString() === rialObj_5._id.toString()) { + if (!(curIds_5.includes(off.curGivenId.toString()))) { + curIds_5.push(off.curGivenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curGivenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curGivenVal); + curObj.price = Number(off.curTakenVal); + if (off.curTakenVal < curObj.min) + curObj.min = Number(off.curTakenVal); + if (off.curTakenVal > curObj.max) + curObj.max = Number(off.curTakenVal); + } + else { + curArr.push({ + currencyId: off.curGivenId, + price: Number(off.curGivenVal), + volume: Number(off.curGivenVal), + min: Number(off.curTakenVal), + max: Number(off.curTakenVal) + }); + } + } + }); + if (curs.length - 1 !== curIds_5.length) { + curs.forEach(function (cur) { + if (!(curIds_5.includes(cur._id.toString())) && cur._id.toString() != rialObj_5._id.toString()) { + console.log(cur._id); + curArr.push({ + price: 0, + currencyId: cur._id, + volume: 0, + min: 0, + max: 0 + }); + } + }); + } + var doc = { + name: nextYear, + currencies: curArr + }; + localYearly_1.LocalYearly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + else { + curs.forEach(function (cur) { + if (cur._id != rialObj_5._id) { + curArr.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nextYear, + currencies: curArr + }; + localYearly_1.LocalYearly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + })["catch"](function (err) { + console.log("the error is", err); + }); + }; + for (i = 1; i <= lostedYears; i++) { + _loop_5(); + } + } + else { + var curArr2_5 = []; + curs.forEach(function (cur) { + if (cur._id != rialObj_5._id) { + curArr2_5.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nowYear_1, + currencies: curArr2_5 + }; + localYearly_1.LocalYearly.create([doc])["catch"](function (err) { + console.log(err); + }); + } + })["catch"](function (err) { + console.log(err); + }); + } + else { + console.log("rial is not exsist on database"); + } + } + else { + console.log("there is no currency on database"); + } + })["catch"](function (err) { + console.log(err); + }); + return [2 /*return*/]; + }); +}); }; diff --git a/server/scripts/localPriceScript.ts b/server/scripts/localPriceScript.ts new file mode 100755 index 0000000..5f9a819 --- /dev/null +++ b/server/scripts/localPriceScript.ts @@ -0,0 +1,805 @@ +import { LocalDaily } from "../db/localDaily" +import { LocalHourly } from "../db/localHourly" +import { LocalMonthly } from "../db/localMonthly" +import { LocalWeekly } from "../db/localWeekly" +import { LocalYearly } from "../db/localYearly" + +import { Accepted_Offers} from "../db/acceptedOffers" +import myError from '../api/myError' +import * as moment from 'moment' +import "moment-timezone" +import { Currencies } from "../db/currencies" +import * as _ from 'lodash' + +export const localHourlySetPrice = async() => { + + Currencies.find() + .then((curs) => { + if(curs) { + const rialObj = _.find(curs, (i) => { return i.ab_name === "IRR"}) + if(rialObj) { + const nowHour = moment().tz('Iran').startOf('hours') + const ago = moment(nowHour).subtract(1,'hours') + LocalHourly.findOne().sort({ name: -1 }).limit(1) + .then((lastDoc) => { + if(lastDoc) { + const lastSavedHour = moment(lastDoc.name).startOf('hours').valueOf() + const lostedHours = moment.duration(nowHour.diff(lastSavedHour)).asHours() + let i + for(i = 1; i <=lostedHours; i++) { + console.log("in for",i) + let curArr = [] + let lstSavedHour = lastSavedHour + let startHour = moment(lstSavedHour).add((i-1), 'hours') + let nextHour = moment(lstSavedHour).add((i ), 'hours') + Accepted_Offers.find({ + created_at:{ + $gt : startHour, + $lte: nextHour + } + }) + .then((offers) => { + if(offers[0]){ + let curIds = [] + offers.forEach((off: any) => { + if(off.curGivenId.toString() === rialObj._id.toString()) { + if(!(curIds.includes(off.curTakenId.toString()))) { + curIds.push(off.curTakenId.toString()) + } + const curObj = _.find(curArr, (i) => { return i.currencyId.toString() === off.curTakenId.toString()}) + if(curObj){ + curObj.volume += Number(off. curTakenVal) + curObj.price = Number(off.curGivenId) + + if(Number(off.curGivenId) < Number(curObj.min)) curObj.min =Number(off.curGivenId) + if(Number(off.curGivenId) > Number(curObj.max)) curObj.max =Number( off.curGivenId) + } else { + curArr.push({ + currencyId:off.curTakenId, + price:Number(off.curTakenVal), + volume : Number(off. curTakenVal), + min : Number(off.curGivenId), + max : Number(off.curGivenId) + }) + } + } else if(off.curTakenId.toString() === rialObj._id.toString()){ + if(!(curIds.includes(off.curGivenId.toString()))) { + curIds.push(off.curGivenId.toString()) + } + const curObj = _.find(curArr, (i) => { return i.currencyId.toString() === off.curGivenId.toString()}) + if(curObj) { + curObj.volume += Number(off. curGivenVal) + curObj.price = Number(off.curTakenVal) + if(off.curTakenVal < curObj.min) curObj.min = Number(off.curTakenVal) + if(off.curTakenVal > curObj.max) curObj.max = Number(off.curTakenVal) + } else { + curArr.push({ + currencyId:off.curGivenId, + price:Number(off.curGivenVal), + volume : Number(off. curGivenVal), + min:Number(off.curTakenVal), + max:Number(off.curTakenVal) + }) + } + } + }) + if(curs.length -1 !== curIds.length){ + curs.forEach(cur => { + if(!(curIds.includes(cur._id.toString()))&& cur._id.toString()!= rialObj._id.toString()){ + console.log(cur._id) + curArr.push({ + price:0, + currencyId : cur._id, + volume : 0, + min : 0, + max : 0 + }) + } + + }) + } + const doc ={ + name:nextHour, + currencies : curArr + } + LocalHourly.create([doc]) + .catch((err) => { + console.log(err) + }) + } else { + curs.forEach(cur => { + if(cur._id!=rialObj._id){ + curArr.push({ + currencyId : cur._id, + volume : 0, + price : 0, + min : 0, + max : 0 + }) + } + }) + const doc = { + name : nextHour, + currencies : curArr + } + LocalHourly.create([doc]) + .catch((err) => { + console.log(err) + }) + } + }) + .catch((err) => { + console.log("the error is",err) + }) + } + } else { + let curArr2 = [] + curs.forEach(cur => { + if(cur._id!=rialObj._id){ + curArr2.push({ + currencyId : cur._id, + volume : 0, + price : 0, + min : 0, + max : 0 + }) + } + }) + const doc = { + name : nowHour, + currencies : curArr2 + } + LocalHourly.create([doc]) + .catch((err) => { + console.log(err) + }) + } + + }) + .catch((err)=>{ + console.log(err) + }) + } else { + console.log("rial is not exsist on database") + } + } else { + console.log("there is no currency on database") + } + }) + .catch((err) => { + console.log(err) + }) +} + +export const localDailySetPrice = async() => { + + Currencies.find() + .then((curs) => { + if(curs){ + const rialObj = _.find(curs, (i) => { return i.ab_name === "IRR"}) + if(rialObj){ + + const nowDay = moment().tz('Iran').startOf('days') + const ago = moment(nowDay).subtract(1,'days') + LocalDaily.findOne().sort({ name: -1 }).limit(1) + .then((lastDoc)=>{ + if(lastDoc){ + const lastSavedDay = moment(lastDoc.name).startOf('days').valueOf() + const lostedDays = moment.duration(nowDay.diff(lastSavedDay)).asDays() + let i + for(i = 1; i <=lostedDays; i++) { + let curArr = [] + let lstSavedDay = lastSavedDay + let startDay = moment(lstSavedDay).add((i-1), 'days') + let nextDay = moment(lstSavedDay).add((i ), 'days') + Accepted_Offers.find({ + created_at:{ + $gt : startDay, + $lte: nextDay + } + }).then((offers)=>{ + if(offers[0]){ + let curIds = [] + offers.forEach((off: any) => { + if(off.curGivenId.toString() === rialObj._id.toString()){ + if(!(curIds.includes(off.curTakenId.toString()))){ + curIds.push(off.curTakenId.toString()) + } + const curObj = _.find(curArr, (i) => { return i.currencyId.toString() === off.curTakenId.toString()}) + if(curObj) { + curObj.volume += Number(off. curTakenVal) + curObj.price = Number(off.curGivenId) + + if(Number(off.curGivenId) < Number(curObj.min)) curObj.min =Number(off.curGivenId) + if(Number(off.curGivenId) > Number(curObj.max)) curObj.max =Number( off.curGivenId) + } else { + curArr.push({ + currencyId:off.curTakenId, + price:Number(off.curTakenVal), + volume : Number(off. curTakenVal), + min : Number(off.curGivenId), + max : Number(off.curGivenId) + }) + } + } else if(off.curTakenId.toString() === rialObj._id.toString()){ + if(!(curIds.includes(off.curGivenId.toString()))) { + curIds.push(off.curGivenId.toString()) + } + const curObj = _.find(curArr, (i) => { return i.currencyId.toString() === off.curGivenId.toString()}) + if(curObj) { + curObj.volume += Number(off. curGivenVal) + curObj.price = Number(off.curTakenVal) + if(off.curTakenVal < curObj.min) curObj.min = Number(off.curTakenVal) + if(off.curTakenVal > curObj.max) curObj.max = Number(off.curTakenVal) + } else{ + curArr.push({ + currencyId:off.curGivenId, + price:Number(off.curGivenVal), + volume : Number(off. curGivenVal), + min:Number(off.curTakenVal), + max:Number(off.curTakenVal) + }) + } + } + }) + if(curs.length -1 !== curIds.length){ + curs.forEach(cur => { + if(!(curIds.includes(cur._id.toString()))&& cur._id.toString()!= rialObj._id.toString()){ + console.log(cur._id) + curArr.push({ + price:0, + currencyId : cur._id, + volume : 0, + min : 0, + max : 0 + }) + } + }) + } + const doc ={ + name:nextDay, + currencies : curArr + } + LocalDaily.create([doc]) + .catch((err) => { + console.log(err) + }) + } else { + curs.forEach(cur => { + if(cur._id!=rialObj._id){ + curArr.push({ + currencyId : cur._id, + volume : 0, + price : 0, + min : 0, + max : 0 + }) + } + }) + const doc = { + name : nextDay, + currencies : curArr + } + LocalDaily.create([doc]) + .catch((err) => { + console.log(err) + }) + } + }) + .catch((err)=>{ + console.log("the error is",err) + }) + } + } else { + let curArr2 = [] + curs.forEach(cur => { + if(cur._id!=rialObj._id){ + curArr2.push({ + currencyId : cur._id, + volume : 0, + price : 0, + min : 0, + max : 0 + }) + } + }) + const doc = { + name : nowDay, + currencies : curArr2 + } + LocalDaily.create([doc]) + .catch((err) => { + console.log(err) + }) + } + }) + .catch((err) => { + console.log(err) + }) + } else { + console.log("rial is not exsist on database") + } + } else { + console.log("there is no currency on database") + } + }) + .catch((err) => { + console.log(err) + }) +} + +export const localWeeklySetPrice = async() => { + + Currencies.find() + .then((curs) => { + if(curs) { + const rialObj = _.find(curs, (i) => { return i.ab_name === "IRR"}) + if(rialObj) { + const nowWeek = moment().tz('Iran').startOf('weeks') + const ago = moment(nowWeek).subtract(1,'weeks') + LocalWeekly.findOne().sort({ name: -1 }).limit(1) + .then((lastDoc) => { + if(lastDoc){ + const lastSavedWeek = moment(lastDoc.name).startOf('weeks').valueOf() + const lostedWeeks = moment.duration(nowWeek.diff(lastSavedWeek)).asWeeks() + let i + for(i = 1; i <=lostedWeeks; i++) { + let curArr = [] + let lstSavedWeek = lastSavedWeek + let startWeek = moment(lstSavedWeek).add((i-1), 'weeks') + let nextWeek = moment(lstSavedWeek).add((i ), 'weeks') + Accepted_Offers.find({ + created_at:{ + $gt : startWeek, + $lte: nextWeek + } + }) + .then((offers) => { + if(offers[0]){ + let curIds = [] + offers.forEach(off => { + if(off.curGivenId.toString() === rialObj._id.toString()) { + if(!(curIds.includes(off.curTakenId.toString()))) { + curIds.push(off.curTakenId.toString()) + } + const curObj = _.find(curArr, (i) => { return i.currencyId.toString() === off.curTakenId.toString()}) + if(curObj) { + curObj.volume += Number(off. curTakenVal) + curObj.price = Number(off.curGivenId) + + if(Number(off.curGivenId) < Number(curObj.min)) curObj.min =Number(off.curGivenId) + if(Number(off.curGivenId) > Number(curObj.max)) curObj.max =Number( off.curGivenId) + } else { + curArr.push({ + currencyId:off.curTakenId, + price:Number(off.curTakenVal), + volume : Number(off. curTakenVal), + min : Number(off.curGivenId), + max : Number(off.curGivenId) + }) + } + } else if(off.curTakenId.toString() === rialObj._id.toString()){ + if(!(curIds.includes(off.curGivenId.toString()))) { + curIds.push(off.curGivenId.toString()) + } + const curObj = _.find(curArr, (i) => { return i.currencyId.toString() === off.curGivenId.toString()}) + if(curObj) { + curObj.volume += Number(off. curGivenVal) + curObj.price = Number(off.curTakenVal) + if(off.curTakenVal < curObj.min) curObj.min = Number(off.curTakenVal) + if(off.curTakenVal > curObj.max) curObj.max = Number(off.curTakenVal) + } else{ + curArr.push({ + currencyId:off.curGivenId, + price:Number(off.curGivenVal), + volume : Number(off. curGivenVal), + min:Number(off.curTakenVal), + max:Number(off.curTakenVal) + }) + } + } + }) + if(curs.length -1 !== curIds.length){ + curs.forEach(cur => { + if(!(curIds.includes(cur._id.toString()))&& cur._id.toString()!= rialObj._id.toString()){ + console.log(cur._id) + curArr.push({ + price:0, + currencyId : cur._id, + volume : 0, + min : 0, + max : 0 + }) + } + }) + } + const doc ={ + name:nextWeek, + currencies : curArr + } + LocalWeekly.create([doc]) + .catch((err) => { + console.log(err) + }) + } else { + curs.forEach(cur => { + if(cur._id!=rialObj._id){ + curArr.push({ + currencyId : cur._id, + volume : 0, + price : 0, + min : 0, + max : 0 + }) + } + }) + const doc = { + name : nextWeek, + currencies : curArr + } + LocalWeekly.create([doc]) + .catch((err) => { + console.log(err) + }) + } + }) + .catch((err)=>{ + console.log("the error is",err) + }) + // + } + } else { + let curArr2 = [] + curs.forEach(cur => { + if(cur._id!=rialObj._id){ + curArr2.push({ + currencyId : cur._id, + volume : 0, + price : 0, + min : 0, + max : 0 + }) + } + }) + const doc = { + name : nowWeek, + currencies : curArr2 + } + LocalWeekly.create([doc]) + .catch((err) => { + console.log(err) + }) + } + + }) + .catch((err)=>{ + console.log(err) + }) + } else { + console.log("rial is not exsist on database") + } + } else { + console.log("there is no currency on database") + } + }) + .catch((err)=>{ + console.log(err) + }) +} + +export const localMonthlySetPrice = async() => { + + Currencies.find() + .then((curs) => { + if(curs) { + const rialObj = _.find(curs, (i) => { return i.ab_name === "IRR"}) + if(rialObj) { + const nowMonth = moment().tz('Iran').startOf('month') + const ago = moment(nowMonth).subtract(1,'month') + LocalMonthly.findOne().sort({ name: -1 }).limit(1) + .then((lastDoc) => { + if(lastDoc){ + const lastSavedMonth = moment(lastDoc.name).startOf('month').valueOf() + const lostedMonths = moment.duration(nowMonth.diff(lastSavedMonth)).asMonths() + let i + for(i = 1; i <=lostedMonths; i++) { + let curArr = [] + let lstSavedMonth = lastSavedMonth + let startMonth = moment(lstSavedMonth).add((i-1), 'month') + let nextMonth = moment(lstSavedMonth).add((i ), 'month') + Accepted_Offers.find({ + created_at:{ + $gt : startMonth, + $lte: nextMonth + } + }) + .then((offers) => { + if(offers[0]) { + let curIds = [] + offers.forEach((off: any) => { + if(off.curGivenId.toString() === rialObj._id.toString()){ + if(!(curIds.includes(off.curTakenId.toString()))){ + curIds.push(off.curTakenId.toString()) + } + const curObj = _.find(curArr, (i) => { return i.currencyId.toString() === off.curTakenId.toString()}) + if(curObj){ + curObj.volume += Number(off. curTakenVal) + curObj.price = Number(off.curGivenId) + + if(Number(off.curGivenId) < Number(curObj.min)) curObj.min =Number(off.curGivenId) + if(Number(off.curGivenId) > Number(curObj.max)) curObj.max =Number( off.curGivenId) + }else{ + curArr.push({ + currencyId:off.curTakenId, + price:Number(off.curTakenVal), + volume : Number(off. curTakenVal), + min : Number(off.curGivenId), + max : Number(off.curGivenId) + }) + } + }else if(off.curTakenId.toString() === rialObj._id.toString()){ + if(!(curIds.includes(off.curGivenId.toString()))){ + curIds.push(off.curGivenId.toString()) + } + const curObj = _.find(curArr, (i) => { return i.currencyId.toString() === off.curGivenId.toString()}) + if(curObj){ + curObj.volume += Number(off. curGivenVal) + curObj.price = Number(off.curTakenVal) + if(off.curTakenVal < curObj.min) curObj.min = Number(off.curTakenVal) + if(off.curTakenVal > curObj.max) curObj.max = Number(off.curTakenVal) + }else{ + curArr.push({ + currencyId:off.curGivenId, + price:Number(off.curGivenVal), + volume : Number(off. curGivenVal), + min:Number(off.curTakenVal), + max:Number(off.curTakenVal) + }) + } + } + }) + + if(curs.length -1 !== curIds.length){ + curs.forEach(cur => { + if(!(curIds.includes(cur._id.toString()))&& cur._id.toString()!= rialObj._id.toString()){ + console.log(cur._id) + curArr.push({ + price:0, + currencyId : cur._id, + volume : 0, + min : 0, + max : 0 + }) + } + }) + } + const doc ={ + name:nextMonth, + currencies : curArr + } + LocalMonthly.create([doc]) + .catch((err) => { + console.log(err) + }) + }else{ + curs.forEach(cur => { + if(cur._id!=rialObj._id){ + curArr.push({ + currencyId : cur._id, + volume : 0, + price : 0, + min : 0, + max : 0 + }) + } + }) + const doc = { + name : nextMonth, + currencies : curArr + } + LocalMonthly.create([doc]) + .catch((err) => { + console.log(err) + }) + } + }) + .catch((err) => { + console.log("the error is",err) + }) + } + } else { + let curArr2 = [] + curs.forEach(cur => { + if(cur._id!=rialObj._id){ + curArr2.push({ + currencyId : cur._id, + volume : 0, + price : 0, + min : 0, + max : 0 + }) + } + }) + const doc = { + name : nowMonth, + currencies : curArr2 + } + LocalMonthly.create([doc]) + .catch((err) => { + console.log(err) + }) + } + }) + .catch((err)=>{ + console.log(err) + }) + } else{ + console.log("rial is not exsist on database") + } + } else { + console.log("there is no currency on database") + } + }) + .catch((err) => { + console.log(err) + }) +} + +export const localYearlySetPrice = async() => { + + Currencies.find() + .then((curs)=>{ + if(curs){ + const rialObj = _.find(curs, (i) => { return i.ab_name === "IRR"}) + if(rialObj) { + const nowYear = moment().tz('Iran').startOf('year') + const ago = moment(nowYear).subtract(1,'year') + LocalYearly.findOne().sort({ name: -1 }).limit(1) + .then((lastDoc) => { + if(lastDoc) { + const lastSavedYear = moment(lastDoc.name).startOf('year').valueOf() + const lostedYears = moment.duration(nowYear.diff(lastSavedYear)).asYears() + let i + for(i = 1; i <=lostedYears; i++) { + let curArr = [] + let lstSavedYear = lastSavedYear + let startYear = moment(lstSavedYear).add((i-1), 'year') + let nextYear = moment(lstSavedYear).add((i ), 'year') + Accepted_Offers.find({ + created_at:{ + $gt : startYear, + $lte: nextYear + } + }) + .then((offers) => { + if(offers[0]) { + let curIds = [] + offers.forEach(off => { + if(off.curGivenId.toString() === rialObj._id.toString()){ + if(!(curIds.includes(off.curTakenId.toString()))){ + curIds.push(off.curTakenId.toString()) + } + + const curObj = _.find(curArr, (i) => { return i.currencyId.toString() === off.curTakenId.toString()}) + if(curObj) { + curObj.volume += Number(off. curTakenVal) + curObj.price = Number(off.curGivenId) + + if(Number(off.curGivenId) < Number(curObj.min)) curObj.min =Number(off.curGivenId) + if(Number(off.curGivenId) > Number(curObj.max)) curObj.max =Number( off.curGivenId) + } else { + curArr.push({ + currencyId:off.curTakenId, + price:Number(off.curTakenVal), + volume : Number(off. curTakenVal), + min : Number(off.curGivenId), + max : Number(off.curGivenId) + }) + } + } else if(off.curTakenId.toString() === rialObj._id.toString()){ + if(!(curIds.includes(off.curGivenId.toString()))){ + curIds.push(off.curGivenId.toString()) + } + const curObj = _.find(curArr, (i) => { return i.currencyId.toString() === off.curGivenId.toString()}) + if(curObj) { + curObj.volume += Number(off. curGivenVal) + curObj.price = Number(off.curTakenVal) + if(off.curTakenVal < curObj.min) curObj.min = Number(off.curTakenVal) + if(off.curTakenVal > curObj.max) curObj.max = Number(off.curTakenVal) + } else { + curArr.push({ + currencyId:off.curGivenId, + price:Number(off.curGivenVal), + volume : Number(off. curGivenVal), + min:Number(off.curTakenVal), + max:Number(off.curTakenVal) + }) + } + } + }) + if(curs.length -1 !== curIds.length) { + curs.forEach(cur => { + if(!(curIds.includes(cur._id.toString()))&& cur._id.toString()!= rialObj._id.toString()){ + console.log(cur._id) + curArr.push({ + price:0, + currencyId : cur._id, + volume : 0, + min : 0, + max : 0 + }) + } + }) + } + const doc ={ + name:nextYear, + currencies : curArr + } + + LocalYearly.create([doc]) + .catch((err) => { + console.log(err) + }) + } else { + curs.forEach(cur => { + if(cur._id!=rialObj._id){ + curArr.push({ + currencyId : cur._id, + volume : 0, + price : 0, + min : 0, + max : 0 + }) + } + }) + const doc = { + name : nextYear, + currencies : curArr + } + LocalYearly.create([doc]) + .catch((err) => { + console.log(err) + }) + } + }) + .catch((err)=>{ + console.log("the error is",err) + }) + } + } else { + let curArr2 = [] + curs.forEach(cur => { + if(cur._id!=rialObj._id){ + curArr2.push({ + currencyId : cur._id, + volume : 0, + price : 0, + min : 0, + max : 0 + }) + } + }) + const doc = { + name : nowYear, + currencies : curArr2 + } + LocalYearly.create([doc]) + .catch((err) => { + console.log(err) + }) + } + }) + .catch((err)=>{ + console.log(err) + }) + } else { + console.log("rial is not exsist on database") + } + } else{ + console.log("there is no currency on database") + } + }) + .catch((err)=>{ + console.log(err) + }) +} \ No newline at end of file diff --git a/server/scripts/localWeeklySetPrice.js b/server/scripts/localWeeklySetPrice.js new file mode 100755 index 0000000..aec63ac --- /dev/null +++ b/server/scripts/localWeeklySetPrice.js @@ -0,0 +1,221 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.localWeeklySetPrice = void 0; +var acceptedOffers_1 = require("../db/acceptedOffers"); +var moment = require("moment"); +require("moment-timezone"); +var currencies_1 = require("../db/currencies"); +var _ = require("lodash"); +var localWeekly_1 = require("../db/localWeekly"); +exports.localWeeklySetPrice = function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + currencies_1.Currencies.find() + .then(function (curs) { + if (curs) { + console.log('the curs is ....>', curs); + var rialObj_1 = _.find(curs, function (i) { return i.ab_name === "IRR"; }); + if (rialObj_1) { + var nowWeek_1 = moment().tz('Iran').startOf('weeks'); + var ago = moment(nowWeek_1).subtract(1, 'weeks'); + console.log("rial is founded .....> ", rialObj_1); + console.log("the now weeks is...>", nowWeek_1); + localWeekly_1.LocalWeekly.findOne().sort({ name: -1 }).limit(1) + .then(function (lastDoc) { + if (lastDoc) { + console.log("last document was founded", lastDoc); + var lastSavedWeek = moment(lastDoc.name).startOf('weeks').valueOf(); + console.log("first last saved weeks is....", lastSavedWeek); + console.log("second last saved week is....", lastSavedWeek); + var lostedWeeks = moment.duration(nowWeek_1.diff(lastSavedWeek)).asWeeks(); + console.log("losted weeks is....", lostedWeeks); + var i = void 0; + var _loop_1 = function () { + console.log("in for", i); + var curArr = []; + var lstSavedWeek = lastSavedWeek; + var startWeek = moment(lstSavedWeek).add((i - 1), 'weeks'); + var nextWeek = moment(lstSavedWeek).add((i), 'weeks'); + console.log("the start week is...>", startWeek); + console.log("the next week is...>", nextWeek); + acceptedOffers_1.Accepted_Offers.find({ + created_at: { + $gt: startWeek, + $lte: nextWeek + } + }).then(function (offers) { + if (offers[0]) { + console.log('offer was foundeddddd ...>', offers); + var curIds_1 = []; + offers.forEach(function (off) { + console.log('offer was founded ...>', off); + if (off.curGivenId.toString() === rialObj_1._id.toString()) { + console.log('given is rial'); + if (!(curIds_1.includes(off.curTakenId.toString()))) { + curIds_1.push(off.curTakenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curTakenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curTakenVal); + curObj.price = Number(off.curGivenId); + if (Number(off.curGivenId) < Number(curObj.min)) + curObj.min = Number(off.curGivenId); + if (Number(off.curGivenId) > Number(curObj.max)) + curObj.max = Number(off.curGivenId); + } + else { + curArr.push({ + currencyId: off.curTakenId, + price: Number(off.curTakenVal), + volume: Number(off.curTakenVal), + min: Number(off.curGivenId), + max: Number(off.curGivenId) + }); + } + } + else if (off.curTakenId.toString() === rialObj_1._id.toString()) { + console.log('taken is rial'); + if (!(curIds_1.includes(off.curGivenId.toString()))) { + curIds_1.push(off.curGivenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curGivenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curGivenVal); + curObj.price = Number(off.curTakenVal); + if (off.curTakenVal < curObj.min) + curObj.min = Number(off.curTakenVal); + if (off.curTakenVal > curObj.max) + curObj.max = Number(off.curTakenVal); + } + else { + curArr.push({ + currencyId: off.curGivenId, + price: Number(off.curGivenVal), + volume: Number(off.curGivenVal), + min: Number(off.curTakenVal), + max: Number(off.curTakenVal) + }); + } + } + }); + console.log("curids isssss", curIds_1); + if (curs.length - 1 !== curIds_1.length) { + console.log("yes"); + curs.forEach(function (cur) { + if (!(curIds_1.includes(cur._id.toString())) && cur._id.toString() != rialObj_1._id.toString()) { + console.log(cur._id); + curArr.push({ + price: 0, + currencyId: cur._id, + volume: 0, + min: 0, + max: 0 + }); + } + }); + } + var doc = { + name: nextWeek, + currencies: curArr + }; + localWeekly_1.LocalWeekly.create([doc]); + } + else { + console.log("offer not found"); + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nextWeek, + currencies: curArr + }; + localWeekly_1.LocalWeekly.create([doc]); + } + })["catch"](function (err) { + console.log("the error is", err); + }); + }; + for (i = 1; i <= lostedWeeks; i++) { + _loop_1(); + } + } + else { + var curArr2_1 = []; + console.log("last document was not founded"); + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr2_1.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nowWeek_1, + currencies: curArr2_1 + }; + localWeekly_1.LocalWeekly.create([doc]); + } + })["catch"](function (err) { + console.log(err); + }); + } + else { + console.log("rial is not exsist on database"); + } + } + else { + console.log("there is no currency on database"); + } + })["catch"](function (err) { + console.log(err); + }); + return [2 /*return*/]; + }); +}); }; diff --git a/server/scripts/localYearlySetPrice.js b/server/scripts/localYearlySetPrice.js new file mode 100755 index 0000000..6a19254 --- /dev/null +++ b/server/scripts/localYearlySetPrice.js @@ -0,0 +1,221 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.localYearlySetPrice = void 0; +var acceptedOffers_1 = require("../db/acceptedOffers"); +var moment = require("moment"); +require("moment-timezone"); +var currencies_1 = require("../db/currencies"); +var _ = require("lodash"); +var localYearly_1 = require("../db/localYearly"); +exports.localYearlySetPrice = function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + currencies_1.Currencies.find() + .then(function (curs) { + if (curs) { + console.log('the curs is ....>', curs); + var rialObj_1 = _.find(curs, function (i) { return i.ab_name === "IRR"; }); + if (rialObj_1) { + var nowYear_1 = moment().tz('Iran').startOf('year'); + var ago = moment(nowYear_1).subtract(1, 'year'); + console.log("rial is founded .....> ", rialObj_1); + console.log("the now years is...>", nowYear_1); + localYearly_1.LocalYearly.findOne().sort({ name: -1 }).limit(1) + .then(function (lastDoc) { + if (lastDoc) { + console.log("last document was founded", lastDoc); + var lastSavedYear = moment(lastDoc.name).startOf('year').valueOf(); + console.log("first last saved year is....", lastSavedYear); + console.log("second last saved year is....", lastSavedYear); + var lostedYears = moment.duration(nowYear_1.diff(lastSavedYear)).asYears(); + console.log("losted year is....", lostedYears); + var i = void 0; + var _loop_1 = function () { + console.log("in for", i); + var curArr = []; + var lstSavedYear = lastSavedYear; + var startYear = moment(lstSavedYear).add((i - 1), 'year'); + var nextYear = moment(lstSavedYear).add((i), 'year'); + console.log("the start year is...>", startYear); + console.log("the next year is...>", nextYear); + acceptedOffers_1.Accepted_Offers.find({ + created_at: { + $gt: startYear, + $lte: nextYear + } + }).then(function (offers) { + if (offers[0]) { + console.log('offer was foundeddddd ...>', offers); + var curIds_1 = []; + offers.forEach(function (off) { + console.log('offer was founded ...>', off); + if (off.curGivenId.toString() === rialObj_1._id.toString()) { + console.log('given is rial'); + if (!(curIds_1.includes(off.curTakenId.toString()))) { + curIds_1.push(off.curTakenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curTakenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curTakenVal); + curObj.price = Number(off.curGivenId); + if (Number(off.curGivenId) < Number(curObj.min)) + curObj.min = Number(off.curGivenId); + if (Number(off.curGivenId) > Number(curObj.max)) + curObj.max = Number(off.curGivenId); + } + else { + curArr.push({ + currencyId: off.curTakenId, + price: Number(off.curTakenVal), + volume: Number(off.curTakenVal), + min: Number(off.curGivenId), + max: Number(off.curGivenId) + }); + } + } + else if (off.curTakenId.toString() === rialObj_1._id.toString()) { + console.log('taken is rial'); + if (!(curIds_1.includes(off.curGivenId.toString()))) { + curIds_1.push(off.curGivenId.toString()); + } + var curObj = _.find(curArr, function (i) { return i.currencyId.toString() === off.curGivenId.toString(); }); + if (curObj) { + curObj.volume += Number(off.curGivenVal); + curObj.price = Number(off.curTakenVal); + if (off.curTakenVal < curObj.min) + curObj.min = Number(off.curTakenVal); + if (off.curTakenVal > curObj.max) + curObj.max = Number(off.curTakenVal); + } + else { + curArr.push({ + currencyId: off.curGivenId, + price: Number(off.curGivenVal), + volume: Number(off.curGivenVal), + min: Number(off.curTakenVal), + max: Number(off.curTakenVal) + }); + } + } + }); + console.log("curids isssss", curIds_1); + if (curs.length - 1 !== curIds_1.length) { + console.log("yes"); + curs.forEach(function (cur) { + if (!(curIds_1.includes(cur._id.toString())) && cur._id.toString() != rialObj_1._id.toString()) { + console.log(cur._id); + curArr.push({ + price: 0, + currencyId: cur._id, + volume: 0, + min: 0, + max: 0 + }); + } + }); + } + var doc = { + name: nextYear, + currencies: curArr + }; + localYearly_1.LocalYearly.create([doc]); + } + else { + console.log("offer not found"); + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nextYear, + currencies: curArr + }; + localYearly_1.LocalYearly.create([doc]); + } + })["catch"](function (err) { + console.log("the error is", err); + }); + }; + for (i = 1; i <= lostedYears; i++) { + _loop_1(); + } + } + else { + var curArr2_1 = []; + console.log("last document was not founded"); + curs.forEach(function (cur) { + if (cur._id != rialObj_1._id) { + curArr2_1.push({ + currencyId: cur._id, + volume: 0, + price: 0, + min: 0, + max: 0 + }); + } + }); + var doc = { + name: nowYear_1, + currencies: curArr2_1 + }; + localYearly_1.LocalYearly.create([doc]); + } + })["catch"](function (err) { + console.log(err); + }); + } + else { + console.log("rial is not exsist on database"); + } + } + else { + console.log("there is no currency on database"); + } + })["catch"](function (err) { + console.log(err); + }); + return [2 /*return*/]; + }); +}); }; diff --git a/server/scripts/priceStats.js b/server/scripts/priceStats.js new file mode 100755 index 0000000..a2158f0 --- /dev/null +++ b/server/scripts/priceStats.js @@ -0,0 +1,523 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +exports.__esModule = true; +exports.continuesStatsOfOrders = void 0; +var moment = require("moment-timezone"); +var globalHourlyPrice_1 = require("../db/globalHourlyPrice"); +var globalWeeklyPrice_1 = require("../db/globalWeeklyPrice"); +var globalDailyPrice_1 = require("../db/globalDailyPrice"); +var globalYearlyPrice_1 = require("../db/globalYearlyPrice"); +var globalMontlyPrice_1 = require("../db/globalMontlyPrice"); +var currencies_1 = require("../db/currencies"); +var redis = require("../api/redis"); +var mongoose = require("mongoose"); +var fetch = require('node-fetch'); +exports.continuesStatsOfOrders = function () { + var currencyHashMap = new Map(); + var currencyFetcher = function () { + return currencies_1.Currencies.find().then(function (currency) { + // console.log("in currency",currency) + if (currency && currency.length > 0) { + return currency.map(function (curr) { + // console.log("pushed " , curr.ab_name) + return currencyHashMap.set(curr.ab_name, curr._id); + }); + } + })["catch"](function (err) { + // console.log("in currency catch" ,err) + }); + }; + Promise.all([currencyFetcher()]).then(function () { + //console.log("map is ", currencyHashMap) + var currenciesString = ""; + //Map.prototype.keys(currencyHashMap) + var currencyIterator = function () { + Array.from(currencyHashMap.keys()).map(function (element, index) { + // console.log("element is ", index) + currenciesString += element; + if (index + 1 != currencyHashMap.size) { + currenciesString += ","; + } + // console.log("iterating currencString", currenciesString) + }); + }; + Promise.all([currencyIterator()]).then(function () { + // console.log("currencies String is ", currenciesString) + fetch('https://api.nomics.com/v1/currencies/ticker?key=demo-26240835858194712a4f8cc0dc635c7a&interval=7d,30d,1d,1h,365d&ids=' + currenciesString) + .then(function (res) { return res.json(); }) + .then(function (json) { + json.map(function (element) { return __awaiter(void 0, void 0, void 0, function () { + var currentPrice, lastHourPrice, yesterDayPrice, lastWeekPrice, lastMonthPrice, lastYearPrice, lastHourVolume, yesterDayVolume, lastWeekVolume, lastMonthVolume, lastYearVolume, elementName, currentTimeInGreenwich, currentTimelastHour, currentTimeYesterday, currentTimeLastWeekNumber, currentTimeLastMonth, currentTimeLastYear, yesterDayStartTime, todayStartTime, lastWeekStartTime, lastWeekEndTime, lastMonthStartTime, lastMonthEndTime, lastYearStartTime, lastYearEndTime, currentTimeMinute, hourlyGlobalPrice, dailyGlobalPrice, weeklyGlobalPrice, monthlyGlobalPrice, yearlyGlobalPrice, session, dbWeekly, dbMonthly, dbYearly, dbDaily, dbHourly; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + currentPrice = element["price"]; + lastHourPrice = Number(element["price"]) - Number(element["1h"]["price_change"]); + yesterDayPrice = Number(element["price"]) - Number(element["1d"]["price_change"]); + lastWeekPrice = Number(element["price"]) - Number(element["7d"]["price_change"]); + lastMonthPrice = Number(element["price"]) - Number(element["30d"]["price_change"]); + lastYearPrice = Number(element["price"]) - Number(element["365d"]["price_change"]); + lastHourVolume = Number(element["1h"]["volume"]); + yesterDayVolume = Number(element["1d"]["volume"]); + lastWeekVolume = Number(element["7d"]["volume"]); + lastMonthVolume = Number(element["30d"]["volume"]); + lastYearVolume = Number(element["365d"]["volume"]); + elementName = element["symbol"]; + currentTimeInGreenwich = moment().tz('Etc/Greenwich'); + currentTimelastHour = moment().tz('Etc/Greenwich').subtract({ hour: 1 }); + currentTimeYesterday = moment().tz('Etc/Greenwich').subtract({ day: 1 }); + currentTimeLastWeekNumber = moment().tz('Etc/Greenwich').subtract({ week: 1 }).week(); + currentTimeLastMonth = moment().tz('Etc/Greenwich').subtract({ day: 30 }); + currentTimeLastYear = moment().tz('Etc/Greenwich').subtract({ day: 365 }); + yesterDayStartTime = moment().tz('Etc/Greenwich').subtract({ day: 1 }).format("YYYY-MM-DD"); + todayStartTime = moment().tz('Etc/Greenwich').format("YYYY-MM-DD"); + lastWeekStartTime = moment().tz('Etc/Greenwich').subtract({ week: 1 }).startOf('week').format("YYYY-MM-DD"); + lastWeekEndTime = moment().tz('Etc/Greenwich').subtract({ week: 1 }).endOf('week').format("YYYY-MM-DD"); + lastMonthStartTime = moment().tz('Etc/Greenwich').subtract({ day: 30 }).startOf('month').format("YYYY-MM-DD"); + lastMonthEndTime = moment().tz('Etc/Greenwich').subtract({ day: 30 }).endOf('month').format("YYYY-MM-DD"); + lastYearStartTime = moment().tz('Etc/Greenwich').subtract({ day: 365 }).startOf('year').format("YYYY-MM-DD"); + lastYearEndTime = moment().tz('Etc/Greenwich').subtract({ day: 365 }).endOf('year').format("YYYY-MM-DD"); + currentTimeMinute = currentTimeInGreenwich.minute(); + return [4 /*yield*/, mongoose.startSession()]; + case 1: + session = _a.sent(); + redis.hashGetAll(elementName + '-g').then(function (rObject) { + if (rObject && rObject.current) { + // console.log("rObject is", rObject) + var newMin = rObject.min; + var newMax = rObject.max; + if (currentPrice < newMin) { + newMin = currentPrice; + } + if (currentPrice > newMax) { + newMax = currentPrice; + } + redis.hashHMset(elementName + '-g', { + current: currentPrice, + min: newMin, + max: newMax, + yesterDayPrice: yesterDayPrice + }).then(function () { + // console.log("element is ", element) + // const yesterDayPriceChange = Number(element["1d"]["price_change"]) + }); + } + else { + // console.log("in elseeeeeeeeeeeeeeeeeee") + redis.hashHMset(elementName + '-g', { + current: currentPrice, + min: currentPrice, + max: currentPrice, + yesterDayPrice: yesterDayPrice + }).then(function () { + // console.log("element is ", element) + // const yesterDayPriceChange = Number(element["1d"]["price_change"]) + }); + } + })["catch"](function (err) { + // console.log("in catch error",err) + }); + dbWeekly = function () { + //console.log("in db daily method") + return redis.hashget(elementName + "-g" + "-w").then(function (thatWeek) { + // console.log("trollo ",new Date(hourString)) + if (thatWeek && Number(thatWeek) === Number(moment().tz('Etc/Greenwich').subtract({ week: 1 }).week())) { + // console.log("exisst",thatWeek) + // console.log("exist") + } + else { + // console.log("must be yesterday with greenwich date",currentTimeInGreenwich.subtract({day : 1}).format()) + var minWeek_1; + var maxWeek_1; + var minCalculatorForLastWeek = function () { + // console.log(" lastWeekStartTime :: ", lastWeekStartTime) + // console.log(" lastWeekEndTime :: ", lastWeekEndTime) + return globalDailyPrice_1.GlobalDailyPrice.find({ + timeStamp: { $gte: lastWeekStartTime, $lte: lastWeekEndTime } + }).then(function (sevenValues) { + // console.log("result of 7 objects for weekly", sevenValues) + return sevenValues.map(function (element) { + if (element.price.min < minWeek_1 || !minWeek_1) { + minWeek_1 = element.price.min; + // console.log("minWeek is",minWeek) + } + if (element.price.max > maxWeek_1 || !maxWeek_1) { + maxWeek_1 = element.price.max; + // console.log("maxWeek is",maxWeek) + } + }); + }); + }; + return Promise.all([minCalculatorForLastWeek()]).then(function () { + var weeklyDbData = { + timeStamp: moment().tz('Etc/Greenwich').subtract({ week: 1 }).format(), + price: { price: lastWeekPrice, + min: minWeek_1, + max: maxWeek_1 + }, + volume: lastWeekVolume, + currencyId: currencyHashMap.get(elementName) + }; + weeklyGlobalPrice = weeklyDbData; + // console.log("setted weekly in db",weeklyGlobalPrice) + return weeklyGlobalPrice; + })["catch"](function (err) { + }); + } + })["catch"](function (err) { + console.log(err); + }); + }; + dbMonthly = function () { + //console.log("in db daily method") + return redis.hashget(elementName + "-g" + "-m").then(function (thatmonth) { + // console.log("trollo ",new Date(hourString)) + if (thatmonth && Number(thatmonth) === Number(moment().tz('Etc/Greenwich').subtract({ day: 30 }).month() + 1)) { + // console.log("exisst",thatmonth) + // console.log("exist") + } + else { + // console.log("must be yesterday with greenwich date",currentTimeInGreenwich.subtract({day : 1}).format()) + var minMonth_1; + var maxMonth_1; + var minCalculatorForLastMonth = function () { + // console.log(" lastMonthStartTime :: ", lastMonthStartTime) + // console.log(" lastMonthEndTime :: ", lastMonthEndTime) + return globalDailyPrice_1.GlobalDailyPrice.find({ + timeStamp: { $gte: lastMonthStartTime, $lte: lastMonthEndTime } + }).then(function (thirtyValues) { + // console.log("result of 30 objects for monthly", thirtyValues) + return thirtyValues.map(function (element) { + if (element.price.min < minMonth_1 || !minMonth_1) { + minMonth_1 = element.price.min; + // console.log("minMonth is",minMonth) + } + if (element.price.max > maxMonth_1 || !maxMonth_1) { + maxMonth_1 = element.price.max; + // console.log("maxMonth is",maxMonth) + } + }); + }); + }; + return Promise.all([minCalculatorForLastMonth()]).then(function () { + var monthlyDbData = { + timeStamp: moment().tz('Etc/Greenwich').subtract({ day: 30 }).format(), + price: { price: lastMonthPrice, + min: minMonth_1, + max: maxMonth_1 + }, + volume: lastMonthVolume, + currencyId: currencyHashMap.get(elementName) + }; + monthlyGlobalPrice = monthlyDbData; + // console.log("setted monthly in db",monthlyGlobalPrice) + return monthlyGlobalPrice; + })["catch"](function (err) { + }); + } + })["catch"](function (err) { + console.log(err); + }); + }; + dbYearly = function () { + //console.log("in db daily method") + return redis.hashget(elementName + "-g" + "-y").then(function (thatYear) { + // console.log("trollo ",new Date(hourString)) + if (thatYear && Number(thatYear) === Number(moment().tz('Etc/Greenwich').subtract({ day: 365 }).year())) { + // console.log("exisst",thatYear) + // console.log("exist") + } + else { + // console.log("must be yesterday with greenwich date",currentTimeInGreenwich.subtract({day : 1}).format()) + var minYear_1; + var maxYear_1; + var minCalculatorForLastYear = function () { + // console.log(" lastYearStartTime :: ", lastYearStartTime) + // console.log(" lastYearEndTime :: ", lastYearEndTime) + return globalMontlyPrice_1.GlobalMonthlyPrice.find({ + timeStamp: { $gte: lastYearStartTime, $lte: lastYearEndTime } + }).then(function (thirtyValues) { + // console.log("result of 12 objects for yearly", thirtyValues) + return thirtyValues.map(function (element) { + if (element.price.min < minYear_1 || !minYear_1) { + minYear_1 = element.price.min; + // console.log("minYear is",minYear) + } + if (element.price.max > maxYear_1 || !maxYear_1) { + maxYear_1 = element.price.max; + // console.log("maxYearis",maxYear) + } + }); + }); + }; + return Promise.all([minCalculatorForLastYear()]).then(function () { + var yearlyDbData = { + timeStamp: moment().tz('Etc/Greenwich').subtract({ day: 30 }).format(), + price: { price: lastYearPrice, + min: minYear_1, + max: maxYear_1 + }, + volume: lastYearVolume, + currencyId: currencyHashMap.get(elementName) + }; + yearlyGlobalPrice = yearlyDbData; + // console.log("setted yearly in db",yearlyGlobalPrice) + return yearlyGlobalPrice; + })["catch"](function (err) { + }); + } + })["catch"](function (err) { + // console.log(err) + }); + }; + dbDaily = function () { + //console.log("in db daily method") + return redis.hashget(elementName + "-g" + "-d").then(function (thatDay) { + // console.log("trollo ",new Date(hourString)) + if (thatDay && Number(thatDay) === Number(currentTimeYesterday.date())) { + // console.log("exisst",thatDay) + // console.log("exist") + } + else { + // console.log("must be yesterday with greenwich date",currentTimeInGreenwich.subtract({day : 1}).format()) + var minDay_1; + var maxDay_1; + var minCalculatorForYesterDay = function () { + return globalHourlyPrice_1.GlobalHourlyPrice.find({ + timeStamp: { $gte: yesterDayStartTime, $lt: todayStartTime } + }).then(function (twentyfourPrices) { + // console.log("prices", twentyfourPrices) + return twentyfourPrices.map(function (element) { + if (element.price.min < minDay_1 || !minDay_1) { + minDay_1 = element.price.min; + // console.log("minDay is",minDay) + } + if (element.price.max > maxDay_1 || !maxDay_1) { + maxDay_1 = element.price.max; + // console.log("maxDay is",maxDay) + } + }); + }); + }; + return Promise.all([minCalculatorForYesterDay()]).then(function () { + var dailyDbData = { + timeStamp: currentTimeYesterday.format(), + price: { price: yesterDayPrice, + min: minDay_1, + max: maxDay_1 + }, + volume: yesterDayVolume, + currencyId: currencyHashMap.get(elementName) + }; + dailyGlobalPrice = dailyDbData; + // console.log("setted daily in db",dailyGlobalPrice) + return dailyGlobalPrice; + })["catch"](function (err) { + }); + } + })["catch"](function (err) { + console.log(err); + }); + }; + dbHourly = function () { + // console.log("in db hourly method") + return redis.hashget(elementName + "-g" + "-h").then(function (thatHour) { + // console.log("that hour is " ,thatHour) + // console.log("currentTime last hour is " ,currentTimelastHour.hour()) + if (thatHour && Number(thatHour) === Number(currentTimelastHour.hour())) { + // return console.log("exisst",thatHour) + // console.log("exist") + } + else { + return redis.hashGetAll(elementName + '-g').then(function (rObject) { + if (rObject && rObject.current) { + // console.log("rObject is", rObject) + var hourlyMin = Number(rObject.min); + var hourlyMax = Number(rObject.max); + // console.log("must be last hour with greenwich date",currentTimeInGreenwich.subtract({hours : 1}).format()) + var hourlyDbData = { + timeStamp: currentTimelastHour.format(), + price: { + price: lastHourPrice, + min: hourlyMin, + max: hourlyMax + }, + volume: lastHourVolume, + currencyId: currencyHashMap.get(elementName) + }; + hourlyGlobalPrice = hourlyDbData; + // console.log("setted hourly in db",hourlyGlobalPrice) + return hourlyGlobalPrice; + } + else { + // console.log("object is not righ",rObject) + } + }); + } + })["catch"](function (err) { + console.log(err); + }); + }; + return [2 /*return*/, Promise.all([dbHourly(), dbDaily(), dbWeekly(), dbMonthly(), dbYearly()]).then(function () { + session.withTransaction(function () { return __awaiter(void 0, void 0, void 0, function () { + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (!hourlyGlobalPrice) return [3 /*break*/, 2]; + return [4 /*yield*/, globalHourlyPrice_1.GlobalHourlyPrice.create([hourlyGlobalPrice], { session: session }) + // console.log("in here") + ]; + case 1: + _a.sent(); + _a.label = 2; + case 2: + if (!weeklyGlobalPrice) return [3 /*break*/, 4]; + // console.log("let 's create weekly",weeklyGlobalPrice) + return [4 /*yield*/, globalWeeklyPrice_1.GlobalWeeklyPrice.create([weeklyGlobalPrice], { session: session })]; + case 3: + // console.log("let 's create weekly",weeklyGlobalPrice) + _a.sent(); + _a.label = 4; + case 4: + if (!dailyGlobalPrice) return [3 /*break*/, 6]; + // console.log("let 's create daily",dailyGlobalPrice) + return [4 /*yield*/, globalDailyPrice_1.GlobalDailyPrice.create([dailyGlobalPrice], { session: session })]; + case 5: + // console.log("let 's create daily",dailyGlobalPrice) + _a.sent(); + _a.label = 6; + case 6: + if (!monthlyGlobalPrice) return [3 /*break*/, 8]; + // console.log("let 's create monthly",monthlyGlobalPrice) + return [4 /*yield*/, globalMontlyPrice_1.GlobalMonthlyPrice.create([monthlyGlobalPrice], { session: session })]; + case 7: + // console.log("let 's create monthly",monthlyGlobalPrice) + _a.sent(); + _a.label = 8; + case 8: + if (!yearlyGlobalPrice) return [3 /*break*/, 10]; + // console.log("let 's create yearly",yearlyGlobalPrice) + return [4 /*yield*/, globalYearlyPrice_1.GlobalYearlyPrice.create([yearlyGlobalPrice], { session: session })]; + case 9: + // console.log("let 's create yearly",yearlyGlobalPrice) + _a.sent(); + _a.label = 10; + case 10: return [2 /*return*/]; + } + }); + }); }).then(function () { + redis.hashset(elementName + "-g" + "-h", currentTimelastHour.hour()).then(function () { + }); + redis.hashset(elementName + "-g" + "-d", currentTimeYesterday.date()).then(function () { + }); + redis.hashset(elementName + "-g" + "-w", currentTimeLastWeekNumber).then(function () { + }); + redis.hashset(elementName + "-g" + "-m", currentTimeLastMonth.month() + 1).then(function () { + }); + redis.hashset(elementName + "-g" + "-y", currentTimeLastYear.year()).then(function () { + }); + })["catch"](function (err) { + console.log(err); + }); + })]; + } + }); + }); }); + }); + }); + }); +}; +// redis.hashset("globalLastHour",currentTimeHour -1).then(()=>{ +// const hourlyDbData = { +// timeStamp : hourString.toString(), +// price , +// volume, +// currencyId : currencyHashMap.get(element["symbol"]) +// } +// console.log("hourlyDbData",hourlyDbData) +// const hourGlobalHourlyPrice = new GlobalHourlyPrice( hourlyDbData) +// console.log("hour global is " , hourGlobalHourlyPrice) +// hourGlobalHourlyPrice.save().then(()=>{ +// "successfully saved price" +// }).catch((err)=>{ +// console.log(err) +// }) +// }).catch((err)=>{ +// console.log("error in setting last hour data in redis") +// }) +// redis.hashset(currency.ab_name+ "-h-"+"current",currentPrice) +// if() +// if(await redis.hashget(currency.ab_name+ "-h-"+"min")>currentPrice) +// redis.hashset(currency.ab_name+ "-h-"+"min",currentPrice) +// if(await redis.hashget(currency.ab_name+ "-h-"+"max"+"-"){ +// console.log("in promise", currenciesArr) +// const dailyPrice = new ContinuesPriceStat({ +// name : HourlyString, +// currencyPriceHistory : currenciesArr +// }) +// dailyPrice.save().then(()=>{ +// console.log("successfully saved",dailyPrice) +// }).catch((err)=>{ +// console.log("could not save" , err) +// }) +// //const instant = moment().tz('Iran').subtract(1, 'days') +// console.log("in price method") +// // ContinuesPriceStat.findOne({ name: HourlyString }) +// // .then((result) => { +// fetch('https://api.nomics.com/v1/currencies/ticker?key=demo-26240835858194712a4f8cc0dc635c7a&ids=BTC,ETH,TRX&interval=1m,30d,1d,1h') +// .then(res => res.json()) +// .then( json => { +// }) +// }) +// // ContinuesPriceStat.findOne({ name: yesterdayString }) +// // .then((result) => { +// // }) +// } +// })} diff --git a/server/scripts/priceStats.ts b/server/scripts/priceStats.ts new file mode 100755 index 0000000..e5d1cf9 --- /dev/null +++ b/server/scripts/priceStats.ts @@ -0,0 +1,650 @@ +import * as moment from 'moment-timezone' +import { logger } from "../api/logger" +import { DailyPriceStat } from "../db/dailyPriceStats" +import { GlobalHourlyPrice } from "../db/globalHourlyPrice" +import { GlobalWeeklyPrice } from "../db/globalWeeklyPrice" +import { GlobalDailyPrice } from "../db/globalDailyPrice" +import { GlobalYearlyPrice } from "../db/globalYearlyPrice" +import { GlobalMonthlyPrice } from "../db/globalMontlyPrice" +import { ContinuesPriceStat } from "../db/continuesPriceStats" +import { nextTick } from 'process' +import { promise } from 'bcrypt/promises' +import { Currencies } from '../db/currencies' + +import * as redis from '../api/redis' +import { timeEnd } from 'console' +import * as mongoose from 'mongoose' +import { check } from 'express-validator' + +const fetch = require('node-fetch'); + + +export const continuesStatsOfOrders = () => { + let currencyHashMap = new Map(); + + const currencyFetcher =()=>{ return Currencies.find().then( (currency)=>{ + // console.log("in currency",currency) + + if(currency&& currency.length>0){ + return currency.map((curr)=>{ + // console.log("pushed " , curr.ab_name) + return currencyHashMap.set(curr.ab_name,curr._id) + }) + + } + }).catch((err)=>{ + + // console.log("in currency catch" ,err) + }) + } + Promise.all([currencyFetcher()]).then(()=>{ + //console.log("map is ", currencyHashMap) + let currenciesString = "" + //Map.prototype.keys(currencyHashMap) + const currencyIterator = ()=>{ + Array.from( currencyHashMap.keys()).map((element,index)=>{ + // console.log("element is ", index) + currenciesString += element + if(index+1 !=currencyHashMap.size){ + currenciesString+="," + } + + // console.log("iterating currencString", currenciesString) + + + }) + + } + Promise.all([currencyIterator()]).then(()=>{ + // console.log("currencies String is ", currenciesString) + fetch('https://api.nomics.com/v1/currencies/ticker?key=demo-26240835858194712a4f8cc0dc635c7a&interval=7d,30d,1d,1h,365d&ids='+currenciesString) + .then(res => res.json()) + .then( json => { + json.map(async(element) => { + const currentPrice = element["price"]; + + // console.log("currentprice is", currentPrice) + const lastHourPrice = Number( element["price"])-Number(element["1h"]["price_change"]) + const yesterDayPrice = Number( element["price"])-Number(element["1d"]["price_change"]) + const lastWeekPrice = Number( element["price"])-Number(element["7d"]["price_change"]) + const lastMonthPrice = Number( element["price"])-Number(element["30d"]["price_change"]) + const lastYearPrice = Number( element["price"])-Number(element["365d"]["price_change"]) + const lastHourVolume = Number(element["1h"]["volume"]) + const yesterDayVolume = Number(element["1d"]["volume"]) + const lastWeekVolume = Number(element["7d"]["volume"]) + const lastMonthVolume = Number(element["30d"]["volume"]) + const lastYearVolume = Number(element["365d"]["volume"]) + const elementName = element["symbol"] + const currentTimeInGreenwich = moment().tz('Etc/Greenwich') + const currentTimelastHour = moment().tz('Etc/Greenwich').subtract({hour: 1}) + const currentTimeYesterday =moment().tz('Etc/Greenwich').subtract({day: 1}) + const currentTimeLastWeekNumber =moment().tz('Etc/Greenwich').subtract({week : 1}).week() + + // console.log("last week numberrrrrrrrrrrrrrrrrr " , currentTimeLastWeekNumber) + const currentTimeLastMonth =moment().tz('Etc/Greenwich').subtract({day: 30}) + const currentTimeLastYear =moment().tz('Etc/Greenwich').subtract({day : 365}) + + const yesterDayStartTime = moment().tz('Etc/Greenwich').subtract({day: 1}).format("YYYY-MM-DD") + const todayStartTime = moment().tz('Etc/Greenwich').format("YYYY-MM-DD") + const lastWeekStartTime = moment().tz('Etc/Greenwich').subtract({week: 1}).startOf('week').format("YYYY-MM-DD") + const lastWeekEndTime = moment().tz('Etc/Greenwich').subtract({week: 1}).endOf('week').format("YYYY-MM-DD") + const lastMonthStartTime = moment().tz('Etc/Greenwich').subtract({day: 30}).startOf('month').format("YYYY-MM-DD") + const lastMonthEndTime = moment().tz('Etc/Greenwich').subtract({day: 30}).endOf('month').format("YYYY-MM-DD") + const lastYearStartTime = moment().tz('Etc/Greenwich').subtract({day: 365}).startOf('year').format("YYYY-MM-DD") + const lastYearEndTime = moment().tz('Etc/Greenwich').subtract({day: 365}).endOf('year').format("YYYY-MM-DD") + // const lastHourStartTime = moment().tz('Etc/Greenwich').subtract({day: 1}).format("YYYY-MM-DD") + // console.log("currentTimeLastMonth", currentTimeLastMonth) + let currentTimeMinute = currentTimeInGreenwich.minute() + let hourlyGlobalPrice; + let dailyGlobalPrice; + let weeklyGlobalPrice; + let monthlyGlobalPrice; + let yearlyGlobalPrice; + const session = await mongoose.startSession() + + + + + + + + + + redis.hashGetAll(elementName+'-g').then((rObject: any)=>{ + if(rObject&&rObject.current){ + // console.log("rObject is", rObject) + let newMin = rObject.min + let newMax = rObject.max + + if(currentPricenewMax){ + newMax = currentPrice + } + redis.hashHMset(elementName+'-g',{ + current : currentPrice , + min: newMin, + max : newMax, + yesterDayPrice + }).then(()=>{ + + // console.log("element is ", element) + // const yesterDayPriceChange = Number(element["1d"]["price_change"]) + }) + } + else { + // console.log("in elseeeeeeeeeeeeeeeeeee") + redis.hashHMset(elementName+'-g',{ + current : currentPrice , + min: currentPrice, + max : currentPrice, + yesterDayPrice + }).then(()=>{ + + // console.log("element is ", element) + // const yesterDayPriceChange = Number(element["1d"]["price_change"]) + }) + } + }).catch((err)=>{ + // console.log("in catch error",err) + }) + + + + const dbWeekly = () => { + //console.log("in db daily method") + + return redis.hashget(elementName+"-g"+"-w").then((thatWeek)=>{ + // console.log("trollo ",new Date(hourString)) + if(thatWeek&&Number(thatWeek) === Number(moment().tz('Etc/Greenwich').subtract({ week : 1}).week())){ + // console.log("exisst",thatWeek) + // console.log("exist") + } + else { + // console.log("must be yesterday with greenwich date",currentTimeInGreenwich.subtract({day : 1}).format()) + + let minWeek ; + let maxWeek ; + const minCalculatorForLastWeek = ()=>{ + // console.log(" lastWeekStartTime :: ", lastWeekStartTime) + // console.log(" lastWeekEndTime :: ", lastWeekEndTime) + return GlobalDailyPrice.find({ + timeStamp : { $gte: lastWeekStartTime, $lte: lastWeekEndTime } + }).then((sevenValues)=>{ + // console.log("result of 7 objects for weekly", sevenValues) + return sevenValues.map((element)=>{ + + if(element.price.minmaxWeek||!maxWeek){ + + + maxWeek = element.price.max + // console.log("maxWeek is",maxWeek) + } + + }) + + + }) + + } + return Promise.all([minCalculatorForLastWeek()]).then(()=>{ + + + const weeklyDbData = { + timeStamp : moment().tz('Etc/Greenwich').subtract({week : 1}).format(), + price : {price : lastWeekPrice, + min :minWeek , + max : maxWeek + }, + volume : lastWeekVolume, + currencyId : currencyHashMap.get(elementName) + } + + weeklyGlobalPrice = weeklyDbData + // console.log("setted weekly in db",weeklyGlobalPrice) + + return weeklyGlobalPrice + + }).catch((err)=>{ + + }) + + + }}).catch((err)=>{ + + console.log(err) + }) + + + } + const dbMonthly = () => { + //console.log("in db daily method") + + return redis.hashget(elementName+"-g"+"-m").then((thatmonth)=>{ + // console.log("trollo ",new Date(hourString)) + if(thatmonth&&Number(thatmonth) === Number(moment().tz('Etc/Greenwich').subtract({ day : 30}).month()+1)){ + // console.log("exisst",thatmonth) + // console.log("exist") + } + else { + // console.log("must be yesterday with greenwich date",currentTimeInGreenwich.subtract({day : 1}).format()) + + let minMonth ; + let maxMonth ; + const minCalculatorForLastMonth= ()=>{ + // console.log(" lastMonthStartTime :: ", lastMonthStartTime) + // console.log(" lastMonthEndTime :: ", lastMonthEndTime) + return GlobalDailyPrice.find({ + timeStamp : { $gte: lastMonthStartTime, $lte: lastMonthEndTime } + }).then((thirtyValues)=>{ + // console.log("result of 30 objects for monthly", thirtyValues) + return thirtyValues.map((element)=>{ + + if(element.price.minmaxMonth||!maxMonth){ + + maxMonth = element.price.max + // console.log("maxMonth is",maxMonth) + } + + }) + + + }) + + } + return Promise.all([minCalculatorForLastMonth()]).then(()=>{ + + + const monthlyDbData = { + timeStamp : moment().tz('Etc/Greenwich').subtract({day : 30}).format(), + price : {price : lastMonthPrice, + min :minMonth , + max : maxMonth + }, + volume : lastMonthVolume, + currencyId : currencyHashMap.get(elementName) + } + + monthlyGlobalPrice = monthlyDbData + // console.log("setted monthly in db",monthlyGlobalPrice) + + return monthlyGlobalPrice + + }).catch((err)=>{ + + }) + + + }}).catch((err)=>{ + + console.log(err) + }) + + + } + const dbYearly = () => { + //console.log("in db daily method") + + return redis.hashget(elementName+"-g"+"-y").then((thatYear)=>{ + // console.log("trollo ",new Date(hourString)) + if(thatYear&&Number(thatYear) === Number(moment().tz('Etc/Greenwich').subtract({ day : 365}).year())){ + // console.log("exisst",thatYear) + // console.log("exist") + } + else { + // console.log("must be yesterday with greenwich date",currentTimeInGreenwich.subtract({day : 1}).format()) + + let minYear ; + let maxYear ; + const minCalculatorForLastYear= ()=>{ + // console.log(" lastYearStartTime :: ", lastYearStartTime) + // console.log(" lastYearEndTime :: ", lastYearEndTime) + return GlobalMonthlyPrice.find({ + timeStamp : { $gte: lastYearStartTime, $lte: lastYearEndTime } + }).then((thirtyValues)=>{ + // console.log("result of 12 objects for yearly", thirtyValues) + return thirtyValues.map((element)=>{ + + if(element.price.minmaxYear||!maxYear){ + + maxYear = element.price.max + // console.log("maxYearis",maxYear) + } + + }) + + + }) + + } + return Promise.all([minCalculatorForLastYear()]).then(()=>{ + + + const yearlyDbData = { + timeStamp : moment().tz('Etc/Greenwich').subtract({day : 30}).format(), + price : {price : lastYearPrice, + min :minYear , + max : maxYear + }, + volume : lastYearVolume, + currencyId : currencyHashMap.get(elementName) + } + + yearlyGlobalPrice = yearlyDbData + // console.log("setted yearly in db",yearlyGlobalPrice) + + return yearlyGlobalPrice + + }).catch((err)=>{ + + }) + + + }}).catch((err)=>{ + + // console.log(err) + }) + + + } + const dbDaily = () => { + //console.log("in db daily method") + + return redis.hashget(elementName+"-g"+"-d").then((thatDay)=>{ + // console.log("trollo ",new Date(hourString)) + if(thatDay&&Number(thatDay) === Number(currentTimeYesterday.date())){ + // console.log("exisst",thatDay) + // console.log("exist") + } + else { + // console.log("must be yesterday with greenwich date",currentTimeInGreenwich.subtract({day : 1}).format()) + + let minDay ; + let maxDay ; + const minCalculatorForYesterDay = ()=>{ + return GlobalHourlyPrice.find({ + timeStamp : { $gte: yesterDayStartTime, $lt: todayStartTime } + }).then((twentyfourPrices)=>{ + // console.log("prices", twentyfourPrices) + return twentyfourPrices.map((element)=>{ + + if(element.price.minmaxDay||!maxDay){ + + + maxDay = element.price.max + // console.log("maxDay is",maxDay) + } + + }) + + + }) + + } + return Promise.all([minCalculatorForYesterDay()]).then(()=>{ + + + const dailyDbData = { + timeStamp : currentTimeYesterday.format(), + price : {price : yesterDayPrice, + min :minDay , + max : maxDay + }, + volume : yesterDayVolume, + currencyId : currencyHashMap.get(elementName) + } + + dailyGlobalPrice = dailyDbData + // console.log("setted daily in db",dailyGlobalPrice) + + return dailyGlobalPrice + + }).catch((err)=>{ + + }) + + + }}).catch((err)=>{ + + console.log(err) + }) + + + } + + const dbHourly = () => { + // console.log("in db hourly method") + return redis.hashget(elementName+"-g"+"-h").then((thatHour)=>{ + // console.log("that hour is " ,thatHour) + // console.log("currentTime last hour is " ,currentTimelastHour.hour()) + if(thatHour&&Number(thatHour) === Number(currentTimelastHour.hour())){ + // return console.log("exisst",thatHour) + // console.log("exist") + } + else { + return redis.hashGetAll(elementName+'-g').then((rObject: any)=>{ + if(rObject&&rObject.current){ + // console.log("rObject is", rObject) + let hourlyMin = Number(rObject.min) + let hourlyMax = Number(rObject.max) + + // console.log("must be last hour with greenwich date",currentTimeInGreenwich.subtract({hours : 1}).format()) + const hourlyDbData = { + timeStamp : currentTimelastHour.format(), + price : { + price: lastHourPrice, + min : hourlyMin , + max : hourlyMax + } , + volume : lastHourVolume, + currencyId : currencyHashMap.get(elementName) + } + hourlyGlobalPrice = hourlyDbData + // console.log("setted hourly in db",hourlyGlobalPrice) + + return hourlyGlobalPrice} + else { + // console.log("object is not righ",rObject) + + + }}) + }}).catch((err)=>{ + + console.log(err) + }) + + + } + + + + return Promise.all([dbHourly(),dbDaily(),dbWeekly(),dbMonthly(),dbYearly()]).then(()=>{ + session.withTransaction(async ()=>{ + // console.log("hourrrrrrly" , hourlyGlobalPrice) + if(hourlyGlobalPrice) + await GlobalHourlyPrice.create([hourlyGlobalPrice],{session}) + // console.log("in here") + if(weeklyGlobalPrice) + { + // console.log("let 's create weekly",weeklyGlobalPrice) + await GlobalWeeklyPrice.create([weeklyGlobalPrice],{session}) + } + if(dailyGlobalPrice) + { + // console.log("let 's create daily",dailyGlobalPrice) + await GlobalDailyPrice.create([dailyGlobalPrice],{session}) + } + if(monthlyGlobalPrice) + { + // console.log("let 's create monthly",monthlyGlobalPrice) + await GlobalMonthlyPrice.create([monthlyGlobalPrice],{session}) + } + if(yearlyGlobalPrice) + { + // console.log("let 's create yearly",yearlyGlobalPrice) + await GlobalYearlyPrice.create([yearlyGlobalPrice],{session}) + } + //await d.create([hourlyGlobalPrice],{session}) + + }).then(()=>{ + redis.hashset(elementName+"-g"+"-h",currentTimelastHour.hour()).then(()=>{ + + }) + redis.hashset(elementName+"-g"+"-d",currentTimeYesterday.date()).then(()=>{ + + }) + redis.hashset(elementName+"-g"+"-w",currentTimeLastWeekNumber).then(()=>{ + + }) + redis.hashset(elementName+"-g"+"-m",currentTimeLastMonth.month()+1).then(()=>{ + + }) + redis.hashset(elementName+"-g"+"-y",currentTimeLastYear.year()).then(()=>{ + + }) + + + }).catch((err)=>{ + console.log(err) + + }) + + + }) + + + + + + + + + + + + + })})})})} + + + + // redis.hashset("globalLastHour",currentTimeHour -1).then(()=>{ + // const hourlyDbData = { + // timeStamp : hourString.toString(), + // price , + // volume, + // currencyId : currencyHashMap.get(element["symbol"]) + // } + // console.log("hourlyDbData",hourlyDbData) + + // const hourGlobalHourlyPrice = new GlobalHourlyPrice( hourlyDbData) + // console.log("hour global is " , hourGlobalHourlyPrice) + // hourGlobalHourlyPrice.save().then(()=>{ + + + // "successfully saved price" + // }).catch((err)=>{ + + // console.log(err) + // }) + // }).catch((err)=>{ + + // console.log("error in setting last hour data in redis") + + // }) + + + + + + // redis.hashset(currency.ab_name+ "-h-"+"current",currentPrice) + // if() + // if(await redis.hashget(currency.ab_name+ "-h-"+"min")>currentPrice) + // redis.hashset(currency.ab_name+ "-h-"+"min",currentPrice) + + + // if(await redis.hashget(currency.ab_name+ "-h-"+"max"+"-"){ +// console.log("in promise", currenciesArr) +// const dailyPrice = new ContinuesPriceStat({ +// name : HourlyString, +// currencyPriceHistory : currenciesArr + + +// }) +// dailyPrice.save().then(()=>{ + +// console.log("successfully saved",dailyPrice) + +// }).catch((err)=>{ + +// console.log("could not save" , err) + +// }) + + +// //const instant = moment().tz('Iran').subtract(1, 'days') +// console.log("in price method") +// // ContinuesPriceStat.findOne({ name: HourlyString }) +// // .then((result) => { + +// fetch('https://api.nomics.com/v1/currencies/ticker?key=demo-26240835858194712a4f8cc0dc635c7a&ids=BTC,ETH,TRX&interval=1m,30d,1d,1h') +// .then(res => res.json()) +// .then( json => { + + +// }) + + + + +// }) + + + +// // ContinuesPriceStat.findOne({ name: yesterdayString }) +// // .then((result) => { + +// // }) + +// } + // })} + diff --git a/server/test/.env b/server/test/.env new file mode 100755 index 0000000..f9f223c --- /dev/null +++ b/server/test/.env @@ -0,0 +1,2 @@ +TEST_API_URL=http://localhost:3001 +TEST_USER_API_URL=http://localhost:3001 \ No newline at end of file diff --git a/server/test/offerTest.js b/server/test/offerTest.js new file mode 100755 index 0000000..f156ae3 --- /dev/null +++ b/server/test/offerTest.js @@ -0,0 +1,1022 @@ +'use strict' +require('dotenv').config({ path: 'test/.env' }) +const fs = require('fs') +const moment = require( 'moment-timezone') +const path = require('path') +const mongodb = require('mongodb') +// const supertest = require('supertest') +const supertest = require('supertest-session') +const { + set, get, constants, clone, testAuth, testAddEntity, testEditEntity, testRequiredField, + testEntityNotFound, sendTransaction, testTransaction, testTxSaved, getUserVerificationToken, + closeDB +} = require('./test_utils') +const { expect, use } = require('chai') +const testUtils = require('./test_utils') +const { SSL_OP_EPHEMERAL_RSA } = require('constants') + +//const uuid = require('uuid/v4') +//const { Product } = require('../db/products') +//const { connected } = require('process') +//const { cond } = require('lodash') +const api = supertest("http://localhost:3001", + // { + // before: function (req) { + // req.set('authorization', true); + // } + // } +) +const apiAdmin = supertest(process.env.TEST_USER_API_URL) +const adminUsername = 'blockchain.specialist.aut@gmail.com' +const adminPassword = '123456' +const adminObjectId = "5f017f55b6757b9512e53895" + + +const myEmail = "morteza@gmail.com" +const myPassword = "123456" + + +const SecondUserEmail = "morteza۲@gmail.com" +const SecondUserPassord = "123456" + +const adminEmail = "admin@gmail.com" +const adminpassword = "123456" + + +const givenCurencyName = "BITCOIN" +const givenCurencyPersianName = "بیت کوین" +const givenCurencyshorName = "BTC" + +const takenCurencyName = "ETHEREUM" +const takenCurencyPersianName = "اتریوم" +const takenCurencyshorName = "ETH" + +const thirdCurencyName = "TRON" +const thirdCurencyPersianName = "ترون" +const thirdCurencyshorName = "TRX" + +const givenCurrencyValue = 1 +const takenCurrecuyValue = 1 +const offerExpireDate =moment().tz('Iran').add(3, 'days').format('YYYY-MM-DD') +const oneSecondLater =moment().tz('Iran').add(1, 'minutes').toISOString() +//const oneSecondLater = Date.now()+60*1000 + +const expiedOfferExpireDate = moment().tz('Iran').subtract(1, 'days').format('YYYY-MM-DD') +use(require('chai-datetime')) + +////////////////////////////////////////////////// +////////////////////////////////////////////////// +////////////////////////////////////////////////// +////////////////////////////////////////////////// +////////////////////////////////////////////////// + +// describe('1: register an admin', async () => { +// it('register an admin for create a currency ', (done) => { +// apiAdmin.post('/admin/register') +// .send({ email : adminEmail, +// password :adminpassword, +// name : adminName , +// lastName : adminLastName +// }) +// .expect(200) +// .end((err, res) => { +// if (err) { +// done(err) +// } +// expect(res.body).to.have.property('data') +// expect(res.body.data).to.have.property('email') +// expect(res.body.data.email).to.be.equal(adminEmail) +// set('adminemail', res.body.data.email) +// // expect(res.body.data).to.have.property('role') +// // expect(res.body.data.role).to.be.equal("...........") +// // set('adminrole', res.body.data.role) +// done() +// }) +// }) +// }) + +describe('2: login a with admin', async () => { + // before( () => { + // testUtils.deleteCurrenciesColllection() + // }) + before(function(done) { + testUtils.deleteCurrenciesColllection() + done() + }) + + it('logging in with admin ', (done) => { + apiAdmin.post('/admin/login') + .send({ email : adminEmail, + password : adminpassword + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('data') + //expect(res.body.data).to.have.property('profile') + expect(res.body.data).to.have.property("role") + expect(res.body.data.role).to.be.equal("Admin") + done() + }) + }) + +}) + +describe('3: add currencies', () => { + // before( () => { + // testUtils.deleteCurrenciesColllection() + // }) + it('add the given currency ', (done) => { + console.log("must be after") + apiAdmin.post('/admin/addCurrency') + .send({ currencyName : givenCurencyName, + persianName : givenCurencyPersianName, + abName :givenCurencyshorName + }) + .expect(200) + + .end((err, res) => { + console.log("add currency") + console.log("add currency") + console.log("add currency") + if (err) { + done(err) + } + expect(res.body).to.have.property('data') + set('givenCurId', res.body.data) + done() + }) + }) + + it('add the taken currency ', (done) => { + apiAdmin.post('/admin/addCurrency') + .send({ currencyName : takenCurencyName, + persianName : takenCurencyPersianName, + abName :takenCurencyshorName + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('data') + set('takenCurId', res.body.data) + done() + }) + }) + + it('add the third currency ', (done) => { + apiAdmin.post('/admin/addCurrency') + .send({ currencyName : thirdCurencyName, + persianName : thirdCurencyPersianName, + abName : thirdCurencyshorName + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('data') + set('thirdCurId', res.body.data) + done() + }) + }) +}) +describe('4: login with first user', async () => { + it('logging in with user ', (done) => { + api.post('/auth/login') + .send({ username : myEmail, + password : myPassword + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('data') + expect(res.body.data).to.have.property('userId') + //expect(res.body.data.userId).to.be.equal(myUserId) + + done() + }) + }) +}) + +describe('5: add currency value', async () => { + let givenCur + let takenCur + before(async () => { + // cookie2 = get('cookie2') + givenCur = get('givenCurId') + takenCur = get('takenCurId') + console.log("...........",givenCur) + console.log("...........",takenCur) + + }) + + it('adding given currency value ', (done) => { + api.post('/user/addCurrencyValue') + .send({ currencyId : givenCur, + currencyValue : 5000 + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + console.log(res.body) + expect(res.body).to.have.property('message') + expect(res.body.message).to.be.equal("value added successfully") + //expect(res.body.data.userId).to.be.equal(myUserId) + done() + }) + }) +}) + +describe('6: create an offer by first user ', async () => { + let givenCur + let takenCur + let thirdCur + before(async () => { + // cookie2 = get('cookie2') + givenCur = get('givenCurId') + takenCur = get('takenCurId') + thirdCur = get('thirdCurId') + console.log("...........",givenCur) + console.log("...........",takenCur) + + }) + + it('create offer successfully', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + console.log(res.body) + expect(res.body).to.have.property('data') + //expect(res.body.data) + set('offerId', res.body.data) + done() + }) + }) + it('create offer for withdraw ', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('data') + //expect(res.body.data) + set('offerForWithdrawId', res.body.data) + done() + }) + }) + it('create offer for withdraw by second user', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('data') + //expect(res.body.data) + set('offerForWithdrawByScondUserId', res.body.data) + done() + }) + }) + it('create offer with big taken currency value', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: 1000000000, + expDate: offerExpireDate + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('data') + //expect(res.body.data) + set('offerWithBigTakenValueId', res.body.data) + done() + }) + }) + it('create oneSecondAliveOffer', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: oneSecondLater + + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + console.log(res.body) + expect(res.body).to.have.property('data') + //expect(res.body.data) + set('oneSecondAliveOfferId', res.body.data) + done() + }) + }) + + + + + + + + + + it('create offer with nonexisting taken currency in acceptor wallet', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + curTakenId: thirdCur, + curGivenVal: givenCurrencyValue, + curTakenVal: 1000000000, + expDate: offerExpireDate + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('data') + //expect(res.body.data) + set('offerWithNonExistingTCurId', res.body.data) + done() + }) + }) + it('create offer without curGivenId ', (done) => { + api.post('/user/createOffer') + .send({ + //curGivenId: givenCur, + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(422) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('curGivenId is required!') + done() + }) + }) + it('create offer with invalid curGivenId ', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: 12346587, + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(422) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('curGivenId is not valid!') + done() + }) + }) + it('create offer with nonexisiting curGivenId or curTakenId in Currecies collection ', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: "5f742739462e2522ace336ec", + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(400) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('curTakenId error') + done() + }) + }) + it('create offer without curTakenId', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + //curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(422) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('curTakenId is required!') + done() + }) + }) + it('create offer without curGivenVal', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + curTakenId: takenCur, + //curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(422) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('curGivenVal is required!') + done() + }) + }) + it('create offer without curTakenVal', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + //curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(422) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('curTakenVal is required!') + done() + }) + }) + // it('create offer without expDate', (done) => { + // api.post('/user/createOffer') + // .send({ + // curGivenId: givenCur, + // curTakenId: takenCur, + // curGivenVal: givenCurrencyValue, + // curTakenVal: takenCurrecuyValue, + // //expDate: offerExpireDate + // }) + // .expect(422) + // .end((err, res) => { + // if (err) { + // done(err) + // } + // expect(res.body).to.have.property('metaData') + // expect(res.body.metaData).to.have.property('messageEnglish') + // expect(res.body.metaData.messageEnglish).to.equal('expDate is required!') + // done() + // }) + // }) + it(' insert string as givenValue', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + curTakenId: takenCur, + curGivenVal: "givenValue", + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(422) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('curGivenVal is not valid!') + done() + }) + }) + it(' insert string as takenValue', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: "takenValue", + expDate: offerExpireDate + }) + .expect(422) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('curTakenVal is not valid!') + done() + }) + }) + // it(' insert invaid date', (done) => { + // api.post('/user/createOffer') + // .send({ + // curGivenId: givenCur, + // curTakenId: takenCur, + // curGivenVal: givenCurrencyValue, + // curTakenVal: takenCurrecuyValue, + // expDate: ".." + // }) + // .expect(422) + // .end((err, res) => { + // if (err) { + // done(err) + // } + // expect(res.body).to.have.property('metaData') + // expect(res.body.metaData).to.have.property('messageEnglish') + // expect(res.body.metaData.messageEnglish).to.equal('expDate is not valid!') + // done() + // }) + // }) + it('create offer with same currency', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId: givenCur, + curTakenId: givenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(400) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('curGivenId must be different from curTakenId') + done() + }) + }) + it('create offer with insuficient value', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId :givenCur, + curTakenId: takenCur, + curGivenVal: 10000000000000000000, + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(400) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('Given: user has not enough credit in his/her wallet') + done() + }) + }) + it('create offer with nonexisiting currecy in user wallet ', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId :thirdCur, + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: offerExpireDate + }) + .expect(400) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('User does not have this kind of currency') + done() + }) + }) + it('create expired offer ', (done) => { + api.post('/user/createOffer') + .send({ + curGivenId :givenCur, + curTakenId: takenCur, + curGivenVal: givenCurrencyValue, + curTakenVal: takenCurrecuyValue, + expDate: expiedOfferExpireDate + }) + .expect(400) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('expire date must be in the future(not before creating offer date)') + done() + }) + }) +}) + +// describe('8: withdraw created offer', async () => { +// let offerId +// before(async () => { +// offerId = get('offerForWithdrawId') +// console.log("offerid issss ", offerId) +// }) +// it('withdraw offer succesfuly', (done) => { +// api.get('/user/withdrawOffer'+ "?" + "offerId=" + offerId) +// .expect(200) +// .end((err, res) => { +// if (err) { +// done(err) +// } +// expect(res.body).to.have.property('data') +// //expect(res.body.data).to.be.equal(true) +// //expect(res.body).to.have.property('metaData') +// //expect(res.body.metaData).to.have.property('messageEnglish') +// //expect(res.body.metaData.messageEnglish).to.equal('There is no offer with the given Id') +// done() +// }) +// }) +// it('withdraw offer with invalid offer id', (done) => { +// api.get('/user/withdrawOffer'+ "?" + "offerId=" + "jkfsdgh" ) +// .expect(422) +// .end((err, res) => { +// if (err) { +// done(err) +// } +// // expect(res.body).to.have.property('data') +// // expect(res.body.data).to.be.equal(true) +// expect(res.body).to.have.property('metaData') +// expect(res.body.metaData).to.have.property('messageEnglish') +// expect(res.body.metaData.messageEnglish).to.equal('offerId is not valid!') +// done() +// }) +// }) +// it('withdraw offer without offer id', (done) => { +// api.get('/user/withdrawOffer') +// .expect(422) +// .end((err, res) => { +// if (err) { +// done(err) +// } +// // expect(res.body).to.have.property('data') +// // expect(res.body.data).to.be.equal(true) +// expect(res.body).to.have.property('metaData') +// expect(res.body.metaData).to.have.property('messageEnglish') +// expect(res.body.metaData.messageEnglish).to.equal('offerId is required!') +// done() +// }) +// }) +// it('withdraw offer with nonexsisting offer id in active offers', (done) => { +// api.get('/user/withdrawOffer'+ "?" + "offerId=" + "5f742739462e2522ace336ec") +// .expect(400) +// .end((err, res) => { +// if (err) { +// done(err) +// } +// // expect(res.body).to.have.property('data') +// // expect(res.body.data).to.be.equal(true) +// expect(res.body).to.have.property('metaData') +// expect(res.body.metaData).to.have.property('messageEnglish') +// expect(res.body.metaData.messageEnglish).to.equal('There is no offer with the given Id') +// done() +// }) +// }) +// }) +// describe('9: accept your own offer ', async () => { +// let offerId +// let offerWithBigTakenValueId +// before(async () => { +// offerId = get('offerId') + +// console.log("offerid is ", offerId) +// }) +// it('accept your own offer', (done) => { +// api.get('/user/acceptOffer'+ "?" + "offerId=" + offerId ) +// .expect(400) +// .end((err, res) => { +// if (err) { +// done(err) +// } +// expect(res.body).to.have.property('metaData') +// expect(res.body.metaData).to.have.property('messageEnglish') +// expect(res.body.metaData.messageEnglish).to.equal('acceptor and creator must be different') +// done() +// }) +// }) +// }) +describe('7.5: logout first user ', async () => { + let offerId + before(async () => { + offerId = get('offerId') + console.log("offerid is ", offerId) + }) + it('logout', (done) => { + api.get('/auth/logout' ) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + done() + }) + }) +}) +describe('10: login with second user ', async () => { + let takenCur + before(async () => { + takenCur = get('takenCurId') + }) + it('logging in with second user ', (done) => { + api.post('/auth/login') + .send({ username : SecondUserEmail, + password : SecondUserPassord + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('data') + expect(res.body.data).to.have.property('userId') + //expect(res.body.data.userId).to.be.equal(myUserId) + done() + }) + }) + it('adding taken currency value ', (done) => { + api.post('/user/addCurrencyValue') + .send({ currencyId : takenCur, + currencyValue : 5000222 + }) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('message') + expect(res.body.message).to.be.equal("value added successfully") + //expect(res.body.data.userId).to.be.equal(myUserId) + done() + }) + }) +}) +describe('11: accept created offer', async () => { + let offerId + let offerWithBigTakenValueId + let offerWithNonExistingTCurId + before(async () => { + offerId = get('offerId') + offerWithBigTakenValueId = get("offerWithBigTakenValueId") + offerWithNonExistingTCurId = get("offerWithNonExistingTCurId") + + }) + it('accept offer successfuly', (done) => { + api.get('/user/acceptOffer'+ "?" + "offerId=" + offerId ) + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('data') + expect(res.body.data).to.be.equal(offerId) + done() + }) + }) + it('accept offer witout offer id', (done) => { + api.get('/user/acceptOffer') + .expect(422) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('offerId is required!') + done() + }) + }) + it('accept offer with invalid offer id', (done) => { + api.get('/user/acceptOffer'+ "?" + "offerId=" + "23468dgzj" ) + .expect(422) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('offerId is not valid!') + done() + }) + }) + it('accept offer with not enough taken currency value ', (done) => { + api.get('/user/acceptOffer'+ "?" + "offerId=" + offerWithBigTakenValueId ) + .expect(400) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('There is no enough currency in acceptor wallet or acceptor does not have the currency') + done() + }) + }) + it('accept offer with non existing taken currency in acceptor wallet', (done) => { + api.get('/user/acceptOffer'+ "?" + "offerId=" + offerWithNonExistingTCurId) + .expect(400) + .end((err, res) => { + if (err) { + console.log(err) + done(err) + } + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('There is no enough currency in acceptor wallet or acceptor does not have the currency') + done() + }) + }) + + it('accept offer with nonexisting offer id in active offers collections', (done) => { + api.get('/user/acceptOffer'+ "?" + "offerId=" + "b3e6ae42-7e8b-4b40-810a-172657bf892e") + .expect(400) + .end((err, res) => { + if (err) { + done(err) + } + console.log("it after second before") + expect(res.body).to.have.property('metaData') + expect(res.body.metaData).to.have.property('messageEnglish') + expect(res.body.metaData.messageEnglish).to.equal('There is no offer with the given offer Id') + done() + }) + }) +}) + +// describe('11_2: accept created offer', async () => { +// let oneSecondAliveOfferId +// before(async () => { +// await testUtils.sleep(60000) +// oneSecondAliveOfferId = get('oneSecondAliveOfferId') +// console.log("one second offer is",oneSecondAliveOfferId) +// }) +// it('accept expired offer', (done) => { +// api.get('/user/acceptOffer'+ "?" + "offerId=" +oneSecondAliveOfferId ) +// .expect(400) +// .end((err, res) => { +// if (err) { +// done(err) +// } +// console.log("it after second before") +// expect(res.body).to.have.property('metaData') +// expect(res.body.metaData).to.have.property('messageEnglish') +// expect(res.body.metaData.messageEnglish).to.equal('offer is expired') +// done() +// }) +// }) +//}) +//describe('12: withdraw anoter users offer ', async () => { +// let offerId +// before(async () => { +// offerId = get('offerForWithdrawByScondUserId') +// console.log("offerid issss ", offerId) +// }) +// it('withdraw offer that belong to another user', (done) => { +// api.get('/user/withdrawOffer'+ "?" + "offerId=" + offerId) +// .expect(400) +// .end((err, res) => { +// if (err) { +// done(err) +// } +// //expect(res.body).to.have.property('data') +// // expect(res.body.data).to.be.equal(true) +// expect(res.body).to.have.property('metaData') +// expect(res.body.metaData).to.have.property('messageEnglish') +// expect(res.body.metaData.messageEnglish).to.equal('There is no offer with the given Id') +// done() +// }) +// }) +// }) +// describe('13: get price', async () => { +// let Cur +// before(async () => { +// Cur = get('givenCurId') +// console.log("Cur issssssssssssssssssssssssssssssss ", Cur) +// }) +// it('get price of bitcoin succssfuly', (done) => { +// api.post('/user/getPrice') +// .send({ +// currency: Cur, +// quantity: 2 +// }) +// .expect(200) +// .end((err, res) => { +// if (err) { +// done(err) +// } +// expect(res.body).to.have.property('data') +// // expect(res.body.data).to.be.equal(true) +// //expect(res.body).to.have.property('metaData') +// //expect(res.body.metaData).to.have.property('messageEnglish') +// //expect(res.body.metaData.messageEnglish).to.equal('There is no offer with the given Id') +// done() +// }) +// }) +// it('get price without cuurrecy', (done) => { +// api.post('/user/getPrice') +// .send({ +// //currency: Cur, +// quantity: 2 +// }) +// .expect(422) +// .end((err, res) => { +// if (err) { +// done(err) +// } +// //expect(res.body).to.have.property('data') +// //expect(res.body.data).to.be.equal(true) +// expect(res.body).to.have.property('metaData') +// expect(res.body.metaData).to.have.property('messageEnglish') +// expect(res.body.metaData.messageEnglish).to.equal('currency is required!') +// done() +// }) +// }) +// it('get price with invalid cuurrecy', (done) => { +// api.post('/user/getPrice') +// .send({ +// currency: "1635748hjjk", +// quantity: 2 +// }) +// .expect(422) +// .end((err, res) => { +// if (err) { +// done(err) +// } +// //expect(res.body).to.have.property('data') +// //expect(res.body.data).to.be.equal(true) +// expect(res.body).to.have.property('metaData') +// expect(res.body.metaData).to.have.property('messageEnglish') +// expect(res.body.metaData.messageEnglish).to.equal('currency is not valid!') +// done() +// }) +// }) + + + + + + + + + + + + + + diff --git a/server/test/sample_test.js b/server/test/sample_test.js new file mode 100755 index 0000000..8179e35 --- /dev/null +++ b/server/test/sample_test.js @@ -0,0 +1,338 @@ +'use strict' +require('dotenv').config({ path: 'test/.env' }) +const fs = require('fs') +const path = require('path') +const mongodb = require('mongodb') +// const supertest = require('supertest') +const supertest = require('supertest-session') +const { + set, get, constants, clone, testAuth, testAddEntity, testEditEntity, testRequiredField, + testEntityNotFound, sendTransaction, testTransaction, testTxSaved, getUserVerificationToken, + closeDB +} = require('./test_utils') +const { expect, use } = require('chai') +//const uuid = require('uuid/v4') +const { User } = require('../db/user') +const { connected } = require('process') +const { iteratee } = require('lodash') +const apiU1 = supertest(process.env.TEST_API_URL) +const apiU2 = supertest(process.env.TEST_API_URL) +const apiAdmin = supertest(process.env.TEST_API_URL) +const randomNum = parseInt(Math.random() * 100000000000000) +const firstProduct = "5f047cd3b26623ce5db531d2" +const firstQuantity = 2 +const secondProduct = "5f018769dc81e2a82da1a1d0" +const secondQuantity = 2 +const myUserId = '5f017f6db6757b9512e53896' +const paymentMethod = "Online" +const addressId = "5f02bf98d1dab54424726d86" + +const adminUsername = 'blockchain.specialist.aut@gmail.com' +const adminPassword = '123456' +const adminObjectId = "5f017f55b6757b9512e53895" +const myEmail = "yousof.kakhki@gmail.com" +const myPassword = "تخسثحاتت" +const firstEditOrderItem = { + product: "5f018769dc81e2a82da1a1d0", + quantity: 1, + +} +const secondEditOrderItem = { + product: "5f047cd3b26623ce5db531d2", + quantity: 0, + +} + +use(require('chai-datetime')) + + +const walletLength = 2 +const activeOffersLength = 5 +const userActiveOffersLength = 3 + +const user1Username = '09123456789' +const user1Password = '123456' +const user1UserId = '5f85aa0587c5a814af5ee91a' +const user2Username = '09987654321' +const user2Password = '654321' +const user2UserId = '5f85c496dd7afe1c771f64d0' + + +describe('1: scenario 1 : User 1 login', async() => { + + it('200 ---- login user 1', (done) => { + apiU1.post('/auth/login') + .expect(200) + .send({ + username:user1Username, + password:user1Password + }) + .end((err, res) => { + if(err){ + done(err) + } + expect(res.body).to.have.property('data') + expect(res.body.data).to.have.property('userId') + expect(res.body.data.userId).to.be.equal(user1UserId) + console.log('1: session is : ', res.headers['set-cookie']) + set('loginUser1', 1) + done() + }) + }) + +}) + +describe('1: scenario 1 : User 1 create offer', async() => { + + let loginUser1 + before(async () => { + + loginUser1 = get('loginUser1') + + }) + + it('200 ---- login user 1', (done) => { + apiU1.post('/user/createOffer') + .expect(200) + .send({ + curGivenId : "5f85b37801624217e5628235", + curGivenVal : 10, + curTakenId : "5f85b38601624217e5628236", + curTakenVal : 4, + expDate : "2020-11-22" + }) + .end((err, res) => { + if(err){ + done(err) + } + set('offerId', res.body.data.offerId) + expect(res.body).to.have.property('data') + done() + }) + }) + +}) + +describe('1: scenario 1 : User 2 login', async() => { + + it('200 ---- login user 2', (done) => { + apiU2.post('/auth/login') + .expect(200) + .send({ + username:user2Username, + password:user2Password + }) + .end((err, res) => { + if(err){ + done(err) + } + expect(res.body).to.have.property('data') + expect(res.body.data).to.have.property('userId') + expect(res.body.data.userId).to.be.equal(user2UserId) + console.log('1: session is : ', res.headers['set-cookie']) + set('loginUser2', 1) + done() + }) + }) + + +}) + +describe('1: scenario 1 : User 1 accept offer', async() => { + + let loginUser2 + let offerId + before(async () => { + + loginUser2 = get('loginUser2') + offerId = get('offerId') + + }) + + + it('200 --- accept offer by user 2', (done) => { + + apiU2.get('/user/acceptOffer'+ '?' + 'offerId=' + offerId ) + .expect(200) + .end((err, res) => { + console.log('offerId', offerId) + console.log('res body :', res.body) + if (err){ + done(err) + } + expect(res.body).to.have.property('data') + expect(res.body.data).to.be.equal(true) + done() + }) + }) + +}) + +describe('1: scenario 1 : User 1 get Accepted Offers', async() => { + + let loginUser1 + let offerId + before(async () => { + + loginUser1 = get('loginUser1') + offerId = get('offerId') + + }) + + + it('400 --- User 1 get Accepted Offers', (done) => { + + + apiU1.get('/user/getUserAcceptedOffer') + .expect(400) + .end((err, res) => { + if (err){ + done(err) + } + console.log('res.body -> ', res.body) + expect(res.body.message).to.include('any') + done() + }) + }) + +}) + + +// describe('1: scenario 1 : User 1', async () => { + +// it('200 --- login user 1', (done) => { +// api.post('/auth/login') +// .expect(200) +// .send({ +// username:user1Username, +// password:user1Password +// }) +// .end((err, res) => { +// if (err) throw err +// expect(res.body).to.have.property('data') +// expect(res.body.data).to.have.property('userId') +// expect(res.body.data.userId).to.be.equal(user1UserId) +// console.log('1: session is : ', res.headers['set-cookie']) +// set('loginUser1', 34) +// done() +// }) +// }) + + +// it('200 --- create offer by user 1', (done) => { +// let temp +// before(async () => { + +// loginUser1 = get('loginUser1') + +// }) + +// api.post('/user/createOffer') +// .expect(200) +// .send({ +// curGivenId : "5f8313c6efb4720437033938", +// curGivenVal : 10, +// curTakenId : "5f8313deefb4720437033939", +// curTakenVal : 4, +// expDate : "2020-11-22" + +// }) +// .end((err, res) => { +// if (err) throw err +// console.log("m created offer : ", res.body.data.uuid) +// set('uuid', res.body.data.uuid) +// console.log('1: session is : ', res.headers['set-cookie']) +// done() +// }) +// }) + +// it('200 --- get user 1 Active Offers by user 1', (done) => { +// let uuid +// before(async () => { + +// uuid = get('uuid') + +// }) + +// api.get('/user/getActiveOffers') +// .expect(200) +// .end((err, res) => { +// if (err) throw err +// expect(res.body.data.map((offer) => offer.uuid)).to.include(uuid) +// console.log('1: session is : ', res.headers['set-cookie']) +// done() +// }) +// }) + +// it('200 --- get users Active Offers by user 1', (done) => { +// let uuid +// before(async () => { + +// uuid = get('uuid') + +// }) + +// api.get('/user/getUserActiveOffers') +// .expect(200) +// .end((err, res) => { +// if (err) throw err +// console.log('body : ',res.body.data) +// expect(res.body.data.map((offer) => offer.uuid)).to.include(uuid) +// console.log('1: session is : ', res.headers['set-cookie']) +// set('goToUser2', 34) +// done() +// }) +// }) + + + + + +// }) + +// describe('2: scenario 1 : User 2', async () => { + +// it('200 --- login user 2', (done) => { +// api.post('/auth/login') +// .expect(200) +// .send({ +// username:user2Username, +// password:user2Password +// }) +// .end((err, res) => { +// if (err) throw err +// expect(res.body).to.have.property('data') +// expect(res.body.data).to.have.property('userId') +// expect(res.body.data.userId).to.be.equal(user2UserId) +// console.log('1: session is : ', res.headers['set-cookie']) +// set('loginUser2', 34) +// done() +// }) +// }) + +// it('200 --- accept offer by user 2', (done) => { +// let uuid = get('uuid') +// let loginUser1 +// let loginUser2 +// before(async () => { +// loginUser1 = get('loginUser1') +// loginUser2 = get('loginUser2') +// }) +// console.log('loginUser1', loginUser1) +// console.log('loginUser2', loginUser2) +// api.get('/user/acceptOffer'+ '?' + 'uuid=' + uuid ) +// .expect(200) +// .end((err, res) => { +// console.log('uuid', uuid) +// console.log('res body :', res.body) +// if (err){ +// done(err) +// } +// expect(res.body).to.have.property('data') +// expect(res.body.data).to.be.equal(true) +// done() +// }) +// }) + +// }) + diff --git a/server/test/test_utils.js b/server/test/test_utils.js new file mode 100755 index 0000000..4729795 --- /dev/null +++ b/server/test/test_utils.js @@ -0,0 +1,167 @@ +'use strict' + +const request = require('request-promise-native') +const { expect } = require('chai') +// const jwt = require('jsonwebtoken') +const mongoose = require('mongoose') +const { User } = require('../db/user') +const { Currencies } = require('../db/currencies') +mongoose.Promise = global.Promise +mongoose.connect("mongodb://localhost:27017/hyperfire", { useNewUrlParser: true, useUnifiedTopology: true }) +const db = mongoose.connection + +const testUtils = {} +const store = {} + +const constants = { + BASE_URL: process.env.TEST_API_URL +} + +testUtils.constants = constants + +testUtils.testTxSaved = (api, txKey, txName) => { + it(`should return correct sent transaction(${txName}) info.`, (done) => { + api.get(`/service/transactionInfo?id=${testUtils.get(txKey)}`, { json: true }) + // .set('Authorization', `Bearer ${testUtils.get(jwtKey)}`) + .expect(200) + .end((err, res) => { + if (err) { + return done(err) + } + // expect(res.body.data).to.be.an('array') + expect(res.body.data.action).to.equal(txName) + + done() + }) + }) +} + +testUtils.testTransaction = (api, txBody, key) => { + it(`should submit transaction (${key}) and return 200.`, (done) => { + api.post('/blockchain/transactions?wait') + // .set('Authorization', `Bearer ${testUtils.get(jwtKey)}`) + // .set('Content-Type', 'application/octet-stream') + .send({ txn: Buffer.from(txBody).toString('base64') }) + .expect(200) + .end((err, res) => { + if (err) { + return done(err) + } + expect(res.body.data).to.have.property('txId') + expect(res.body.success).to.equal(true) + testUtils.set(key, res.body.data.txId) + + done() + }) + }) +} + +testUtils.sendTransaction = async (body) => { + const res = await request.post(`${constants.BASE_URL}/transactions`, { + json: true, + timeout: 7000, + body + }) + + return res +} + +testUtils.getUserVerificationToken = async (email) => { + const u = await User.findOne({ email: email }) + if (u != null && u.emailVerificationString != null) { + return u.emailVerificationString.name + } +} +testUtils.deleteCurrenciesColllection = async () => { + + + const session = await mongoose.startSession() + + + session.withTransaction(async ()=>{ + await Currencies.db.dropCollection("currencies", function (err, result) { + console.log("result is " , result) + }) + + + + }).then(async ()=>{ + + }).catch((err)=>{ + + console.log(err) + }).finally(()=>{ + + session.endSession() + }) + + + } + + + testUtils.closeDB = async () => { + await mongoose.disconnect() +} + +testUtils.login = async (user, pass) => { + const res = await request.post(`${constants.BASE_HOST + constants.BASE_URL}/api/login`, { + json: true, + timeout: 7000, + body: { + grant_type: 'password', + username: user, + password: pass + } + }) + + return res +} + +testUtils.clone = (data) => { + return JSON.parse(JSON.stringify(data)) +} + +testUtils.set = (key, value) => { + store[key] = value +} + +testUtils.get = (key) => { + return store[key] +} + +// testUtils.verifyToken = (token) => { +// return jwt.verify(token, process.env.JWT_SECRET) +// } + +testUtils.testAuth = (method, api, urlKey, data) => { + it('should return authentication failed', (done) => { + api[method](testUtils.get(urlKey)) + .send(data) + .expect(401) + .end((err, res) => { + if (err) { + return done(err) + } + expect(res.body).to.have.property('errors') + expect(res.body.errors).to.be.an('array') + expect(res.body.errors[0].code).to.equal('authentication_failed') + expect(res.body.errors[0].message).to.not.equal(null) + expect(res.body.errors[0].message).to.have.lengthOf.above(3) + + done() + }) + }) +} + + + +testUtils.sleep = (milliseconds) =>{ + const start = new Date().getTime(); + for (var i = 0; i < 1e7; i++) { + if ((new Date().getTime() - start) > milliseconds){ + break; + } + } +} + +module.exports = testUtils diff --git a/server/test/user_tests.js b/server/test/user_tests.js new file mode 100755 index 0000000..b46c72e --- /dev/null +++ b/server/test/user_tests.js @@ -0,0 +1,889 @@ +'use strict' +require('dotenv').config({ path: 'test/.env' }) +const fs = require('fs') +const path = require('path') +const mongodb = require('mongodb') +// const supertest = require('supertest') +const supertest = require('supertest-session') +const { + set, get, constants, clone, testAuth, testAddEntity, testEditEntity, testRequiredField, + testEntityNotFound, sendTransaction, testTransaction, testTxSaved, getUserVerificationToken, + closeDB +} = require('./test_utils') +const { expect, use } = require('chai') +const uuid = require('uuid/v4') +const { Product } = require('../db/products') +const { connected } = require('process') +const api = supertest(process.env.TEST_API_URL, + // { + // before: function (req) { + // req.set('authorization', true); + // } + // } +) +const apiUser2 = supertest(process.env.TEST_API_URL) +const apiAdmin = supertest(process.env.TEST_API_URL) +const randomNum = parseInt(Math.random() * 100000000000000) +const firstProduct = "5f047cd3b26623ce5db531d2" +const firstQuantity = 2 +const secondProduct = "5f018769dc81e2a82da1a1d0" +const secondQuantity = 2 +const myUserId = '5f017f6db6757b9512e53896' +const paymentMethod = "Cash" +const addressId = "5f02bf98d1dab54424726d86" + +const adminUsername = 'blockchain.specialist.aut@gmail.com' +const adminPassword = '123456' +const adminObjectId = "5f017f55b6757b9512e53895" +const myEmail = "yousof.kakhki@gmail.com" +const myPassword = "تخسثحاتت" +const firstEditOrderItem = { + product: "5f018769dc81e2a82da1a1d0", + quantity: 1, + +} +const secondEditOrderItem = { + product: "5f047cd3b26623ce5db531d2", + quantity: 0, + +} +use(require('chai-datetime')) + +describe('1: get a session', async () => { + it('200', (done) => { + api.get('/service/getSession') + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + console.log('1: session is : ', res.headers['set-cookie']) + set('cookie', res.headers['set-cookie']) + done() + }) + }) +}) + +describe('2: get user basket', async () => { + let cookie + before(async () => { + cookie = get('cookie') + }) + it('200', (done) => { + api.get('/service/getUserBasket') + .expect(200) + .set('Cookie', cookie) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('message') + expect(res.body.message).to.be.equal('There is no card!') + // expect(res.body.data).to.have.property('sessionId') + done() + }) + }) + +}) +describe('3: add to session basket', async () => { + let cookie + before(async () => { + cookie = get('cookie') + //console.log('add to basket with the first cookie', cookie) + }) + it('422', (done) => { + api.post('/service/addToBasket') + .expect(422) + .set('Cookie', cookie) + .send({}) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body.metaData).to.have.property('message') + done() + }) + }) + it('422', (done) => { + api.post('/service/addToBasket') + .expect(422) + .set('Cookie', cookie) + .send({ productId: 3123123 }) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body.metaData).to.have.property('message') + expect(res.body.metaData.message).to.contain("محصول") + + done() + }) + }) + it('422', (done) => { + api.post('/service/addToBasket') + .expect(422) + .set('Cookie', cookie) + .send({ productId: randomNum }) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body.metaData).to.have.property('message') + expect(res.body.metaData.message).to.contain("محصول") + + done() + }) + }) + it('422', (done) => { + api.post('/service/addToBasket') + .expect(422) + .set('Cookie', cookie) + .send({ productId: randomNum.toString() }) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body.metaData).to.have.property('message') + expect(res.body.metaData.message).to.contain("شناسه") + + done() + }) + }) + it('422', (done) => { + api.post('/service/addToBasket') + .expect(422) + .set('Cookie', cookie) + .send({ productId: new mongodb.ObjectID }) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body.metaData).to.have.property('message') + expect(res.body.metaData.message).to.contain("تعداد") + + done() + }) + }) + it('422', (done) => { + api.post('/service/addToBasket') + .expect(422) + .set('Cookie', cookie) + .send({ + productId: new mongodb.ObjectID, + quantity: "fasdf" + }) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body.metaData).to.have.property('message') + expect(res.body.metaData.message).to.contain("تعداد") + + done() + }) + }) + it('400', (done) => { + api.post('/service/addToBasket') + .expect(400) + .set('Cookie', cookie) + .send({ + productId: new mongodb.ObjectID, + quantity: randomNum + }) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body.metaData).to.have.property('message') + expect(res.body.metaData.message).to.contain("وجود") + + done() + }) + }) + it('400', (done) => { + api.post('/service/addToBasket') + .expect(400) + .set('Cookie', cookie) + .send({ + productId: "5f047cd3b26623ce5db531d2", + quantity: randomNum + }) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body.metaData).to.have.property('message') + expect(res.body.metaData.message).to.contain("موجود") + + done() + }) + }) + it(`add ${firstProduct} with the quantity of ${firstQuantity}`, (done) => { + api.post('/service/addToBasket') + .expect(200) + .set('Cookie', cookie) + .send({ + productId: firstProduct, + quantity: firstQuantity + }) + .end((err, res) => { + if (err) { + done(err) + } + let temp = cookie[0].toString().replace("sessionId=", ''); + let subCookieSessionId = temp.substring(temp.indexOf(";")-1,temp.indexOf(";")) + expect(res.body.data).to.have.property('sessionId') + expect(res.body.data.sessionId.substring(res.body.data.sessionId.length-1, res.body.data.sessionId.length)).to.be.equal(subCookieSessionId) + expect(res.body.data).to.have.property('items') + expect(res.body.data.items).to.be.an('array') + + expect(res.body.data.items.map((item) => item.product)).to.include(firstProduct) + expect(res.body.data.items.map((item) => item.quantity)).to.include(firstQuantity) + done() + }) + }) + +}) + +describe('4 : login user and merge with previous session', async () => { + let cookie + let basketSessionId + before(async () => { + cookie = get('cookie') + basketSessionId = get('basketSessionId') + // console.log("test 's cookie is", cookie) + }) + + it('200', (done) => { + api.post('/auth/login') + .expect(200) + //.set('Cookie', cookie) + .send({ email: myEmail, password: myPassword }) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body.data).to.have.property('userId') + expect(res.body.data.userId).to.be.equal(myUserId) + + done() + }) + }) + + // it('422', (done) => { + // api.post('/service/addToBasket') + // .expect(422) + + // .send({ productId : 3123123 }) + // .end((err, res) => { + // if (err) { + // done(err) + // } + // expect(res.body.metaData).to.have.property('message') + // expect(res.body.metaData.message).to.contain("محصول") + + // done() + // }) + // }) +}) + +describe('5 : logout user to invalidate previous cookie', async () => { + + + it('200', (done) => { + api.get('/auth/logout') + .expect(200) + //.set('Cookie', cookie) + .end((err, res) => { + if (err) { + done(err) + } + done() + }) + + }) +}) +describe('6 : retreive a new Session', async () => { + it('200', (done) => { + api.get('/service/getSession') + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + console.log(res.headers['set-cookie']) + set('cookie2', res.headers['set-cookie']) + done() + }) + }) +}) + +describe(`7 : add ${secondProduct} with the quantity of ${secondQuantity} with new session`, async () => { + let cookie2 + before(async () => { + cookie2 = get('cookie2') + console.log('secondCookie is ', cookie2) + }) + it('200', (done) => { + api.post('/service/addToBasket') + .expect(200) + .set('Cookie', cookie2) + .send({ + productId: secondProduct, + quantity: secondQuantity + }) + .end((err, res) => { + if (err) { + done(err) + } + let temp = cookie2[0].toString().replace("sessionId=", ''); + let subCookieSessionId = temp.substring(temp.indexOf(";")-2,temp.indexOf(";")) + expect(res.body).to.have.property('data') + expect(res.body.data).to.be.an.st + expect(res.body.data).to.have.property('items') + expect(res.body.data.items).to.be.an('array') + expect(res.body.data.items.map((item) => item.product)).to.include(secondProduct) + expect(res.body.data.items.map((item) => item.quantity)).to.include(secondQuantity) + done() + }) + }) +}) + +describe('8 : login user for the second time therefor merge basket ', async () => { + + it('login', (done) => { + api.post('/auth/login') + .expect(200) + // .set('Cookie', cookie2) + .send({ email: "yousof.kakhki@gmail.com", password: "تخسثحاتت" }) + .end((err, res) => { + + if (err) { + done(err) + } + expect(res.body.data).to.have.property('userId') + expect(res.body.data.userId).to.be.equal(myUserId) + + done() + }) + }) +}) +describe('9 : addding order for merged product ', async () => { + let cookie2 + before(async () => { + cookie2 = get('cookie2') + // console.log("test 's cookie is", cookie) + }) + + // it('sending another json', (done) => { + // api.post('/user/addOrder') + // .expect(422) + // .set('Cookie', cookie2) + // .send({ email: "yousof.kakhki@gmail.com", password: "تخسثحاتت" }) + // .end((err, res) => { + + // if (err) { + // done(err) + // } + // expect(res.body.data).to.have.property('userId') + // expect(res.body.data.userId).to.be.equal(myUserId) + + // done() + // }) + // }) + // it('not sending anything', (done) => { + // api.post('/user/addOrder') + // .expect(422) + // .set('Cookie', cookie2) + // .send() + // .end((err, res) => { + + // if (err) { + // done(err) + // } + // expect(res.body.data).to.have.property('userId') + // expect(res.body.data.userId).to.be.equal(myUserId) + + // done() + // }) + // }) + // it('not even a send function', (done) => { + // api.post('/user/addOrder') + // .expect(422) + // .set('Cookie', cookie2) + // .end((err, res) => { + + // if (err) { + // done(err) + // } + // expect(res.body.data).to.have.property('userId') + // expect(res.body.data.userId).to.be.equal(myUserId) + + // done() + // }) + // }) + // it('incomplete send json with invalid type for the first property', (done) => { + // api.post('/user/addOrder') + // .expect(422) + // .set('Cookie', cookie2) + // .send ({paymentMethod : 'fasdfasdf'}) + // .end((err, res) => { + + // if (err) { + // done(err) + // } + // expect(res.body.data).to.have.property('userId') + // expect(res.body.data.userId).to.be.equal(myUserId) + + // done() + // }) + // }) + it('sending a valid json consisting of addressId and PaymentMethod', (done) => { + api.post('/user/addOrder') + .expect(200) + .set('Cookie', cookie2) + .send({ paymentMethod: paymentMethod, addressId: addressId }) + .end((err, res) => { + + if (err) { + done(err) + } + + // expect(res.body.data).to.have.property('authority') + expect(res.body.data).to.have.property('order') + set('order', res.body.data.order) + // set('authority', res.body.data.authority) + done() + + }) + }) +}) +// beforeEach(done => setTimeout(done, 20000)); +describe('10 : checking user order by calling get order on previous order ', async () => { + let cookie2 + let order + before(async () => { + cookie2 = get('cookie2') + order = get('order') + + }) + it(`getting user order for `, (done) => { + api.get(`/user/getUserOrder?orderIdOp=${order}`) + .expect(200) + .set('Cookie', cookie2) + .end((err, res) => { + + if (err) { + done(err) + } + + expect(res.body.data).is.exist() + + done() + + }) + }) +}) + + + +describe('11 : loggin admin ', async () => { + it('should return 200.', (done) => { + apiAdmin.post('/admin/login') + // .set('Authorization', `Bearer ${testUtils.get(jwtKey)}`) + .send({ email: adminUsername, password: adminPassword }) + .expect(200) + + .end((err, res) => { + if (err) { + return done(err) + } + expect(res.body.data.userId).to.equal(adminObjectId) + done() + }) + }) +}) +describe('12 : editting order by admin ', async () => { + //let cookie2 + let order + before(async () => { + // cookie2 = get('cookie2') + order = get('order') + + }) + it('editing order', (done) => { + apiAdmin.post('/admin/editOrder') + .expect(200) + .send({ + orderOrderId: order, + "delivery" : { + "status" : "Received" + + }, + "orderAddress": { + "phone" : "lkasdjfaljk" + }, + "orderItems": [ + firstEditOrderItem, + secondEditOrderItem + ] + + }) + // .set('Cookie', cookie2) + .end((err, res) => { + + if (err) { + done(err) + } + + expect(res.body.data).have.property('status') + expect(res.body.data.status).to.be.equal('Edited') + // expect(res.body.data.address.block).equal('123123123312312312312asdfaksdfklasdjflajsdf3') + // expect(res.body.data.items).to.be.an('array') + // expect(res.body.data.items[0].quantity).to.be.equal(secondEditOrderItem.quantity) + // expect(res.body.data.items[1].quantity).to.be.equal(firstEditOrderItem.quantity) + // //expect(res.body.data.order.orderStatus.status).equal('Edited') + done() + + }) + }) +}) + + +describe('13 : getting the third session to test basket', async () => { + it('200', (done) => { + api.get('/service/getSession') + .expect(200) + .end((err, res) => { + if (err) { + done(err) + } + console.log(res.headers['set-cookie']) + set('cookie3', res.headers['set-cookie']) + done() + }) + }) +}) +describe('14 : login user ', async () => { + + + it('login', (done) => { + api.post('/auth/login') + .expect(200) + //.set('Cookie', cookie2) + .send({ email: "yousof.kakhki@gmail.com", password: "تخسثحاتت" }) + .end((err, res) => { + + if (err) { + done(err) + } + expect(res.body.data).to.have.property('userId') + expect(res.body.data.userId).to.be.equal(myUserId) + + done() + }) + }) +}) +describe('15 : add to userBasket for the second time', async () => { + + let cookie3 + before(async () => { + cookie3 = get('cookie3') + + }) + it('200', (done) => { + api.post('/service/addToBasket') + .expect(200) + // .set('Cookie', cookie3) + .send({ + productId: secondProduct, + quantity: secondQuantity + }) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body.data).to.have.property('items') + expect(res.body.data.items).to.be.an('array') + expect(res.body.data.items.map((item) => item.product)).to.include(secondProduct) + expect(res.body.data.items.map((item) => item.quantity)).to.include(secondQuantity) + done() + }) + }) +}) +// describe('16 : loggin admin in', async () => { + +// it('should return 200.', (done) => { +// apiAdmin.post('/admin/login') +// // .set('Authorization', `Bearer ${testUtils.get(jwtKey)}`) +// .send({ email: adminUsername, password: adminPassword }) +// .expect(200) +// //.set('Cookie', cookie2) +// .end((err, res) => { +// if (err) { +// return done(err) +// } +// expect(res.body.data.userId).to.equal(adminObjectId) +// done() +// }) +// }) +// }) +// describe('17 : editting product by admin', async () => { + +// it('changing price', (done) => { +// apiAdmin.post('/admin/editProducts') +// // .set('Authorization', `Bearer ${testUtils.get(jwtKey)}`) +// .send({ +// "_id": "5f018769dc81e2a82da1a1d0", +// "name": "test" +// }) +// // .set('Cookie', cookie2) +// .expect(200) +// .end((err, res) => { +// if (err) { +// return done(err) +// } +// expect(res.body).to.have.property('success') +// done() +// }) +// }) +// }) +describe('18 : login user ', async () => { + + it('login', (done) => { + api.post('/auth/login') + .expect(200) + + .send({ email: "yousof.kakhki@gmail.com", password: "تخسثحاتت" }) + .end((err, res) => { + + if (err) { + done(err) + } + expect(res.body.data).to.have.property('userId') + expect(res.body.data.userId).to.be.equal(myUserId) + + done() + }) + }) +}) +// describe('19 : add order ', async () => { + +// it('sending a valid json consisting of addressId and PaymentMethod and should fail', (done) => { +// api.post('/user/addOrder') +// .expect(400) +// // .set('Cookie', cookie3) +// .send({ paymentMethod: paymentMethod, addressId: addressId }) +// .end((err, res) => { + +// if (err) { +// done(err) +// } + +// expect(res.body.metaData).have.property('message') +// done() + +// }) +// }) +// }) + +describe('20 : GET userBasket to fix user s basket ' , async () => { + + it('200', (done) => { + api.get('/service/getUserBasket') + .expect(200) + //.set('Cookie', cookie) + .end((err, res) => { + if (err) { + done(err) + } + expect(res.body).to.have.property('message') + //expect(res.body.message).to.be.equal('There is no card!') + // expect(res.body.data).to.have.property('sessionId') + done() + }) + }) + +}) +describe('21 : adding order ', async () => { + + it('sending a valid json consisting of addressId and PaymentMethod and should fail', (done) => { + api.post('/user/addOrder') + .expect(200) + // .set('Cookie', cookie3) + .send({ paymentMethod: paymentMethod, addressId: addressId }) + .end((err, res) => { + + if (err) { + done(err) + } + expect(res.body.data).to.have.property('authority') + expect(res.body.data).to.have.property('order') + set('order2', res.body.data.order) + set('authority2', res.body.data.authority) + done() + + + + }) + }) +}) +// describe('verify order ', async () => { +// let cookie2 +// let authority +// let orderId +// let amount +// before(async () => { +// cookie2= get('cookie2') +// authority = get('authority') +// orderId = get('orderId') +// amount = get('amount') +// // console.log("test 's cookie is", cookie) +// describe('19 : add order ', async () => { + +// it('sending a valid json consisting of addressId and PaymentMethod and should fail', (done) => { +// api.post('/user/addOrder') +// .expect(400) +// // .set('Cookie', cookie3) +// .send({ paymentMethod: paymentMethod, addressId: addressId }) +// .end((err, res) => { + +// if (err) { +// done(err) +// } + +// expect(res.body.metaData).have.property('message') +// done() + +// }) +// }) +// }) }) +// it('verify using saved amount pid authority', (done) => { +// api.get(`/user/verifyOrder?Amount=${amount}&pid=${orderId}&Authority=${authority}&Status=OK`) +// .expect(302) +// .set('Cookie', cookie2) +// .end((err, res) => { + + +// if (err) { +// done(err) +// } + + +// done() + +// }) +// }) +// }) + // it('422', (done) => { + // api.post('/service/addToBasket') + // .expect(422) + // .set('Cookie', cookie) + // .send({ productId :randomNum }) + // .end((err, res) => { + // if (err) { + // done(err) + // } + // expect(res.body.metaData).to.have.property('message') + // expect(res.body.metaData.message).to.contain("محصول") + + // done() + // }) + // }) + // it('422', (done) => { + // api.post('/service/addToBasket') + // .expect(422) + // .set('Cookie', cookie) + // .send({ productId :randomNum.toString() }) + // .end((err, res) => { + // if (err) { + // done(err) + // } + // expect(res.body.metaData).to.have.property('message') + // expect(res.body.metaData.message).to.contain("شناسه") + + // done() + // }) + // }) + // it('422', (done) => { + // api.post('/service/addToBasket') + // .expect(422) + // .set('Cookie', cookie) + // .send({ productId :new mongodb.ObjectID }) + // .end((err, res) => { + // if (err) { + // done(err) + // } + // expect(res.body.metaData).to.have.property('message') + // expect(res.body.metaData.message).to.contain("تعداد") + + // done() + // }) + // }) + // it('422', (done) => { + // api.post('/service/addToBasket') + // .expect(422) + // .set('Cookie', cookie) + // .send({ productId :new mongodb.ObjectID , + // quantity : "fasdf"}) + // .end((err, res) => { + // if (err) { + // done(err) + // } + // expect(res.body.metaData).to.have.property('message') + // expect(res.body.metaData.message).to.contain("تعداد") + + // done() + // }) + // }) + // it('400', (done) => { + // api.post('/service/addToBasket') + // .expect(400) + // .set('Cookie', cookie) + // .send({ productId :new mongodb.ObjectID , + // quantity : randomNum}) + // .end((err, res) => { + // if (err) { + // done(err) + // } + // expect(res.body.metaData).to.have.property('message') + // expect(res.body.metaData.message).to.contain("پیدا") + + // done() + // }) + // }) + // it('400', (done) => { + // api.post('/service/addToBasket') + // .expect(400) + // .set('Cookie', cookie) + // .send({ productId :"5f047cd3b26623ce5db531d2" , + // quantity : randomNum}) + // .end((err, res) => { + // if (err) { + // done(err) + // } + // expect(res.body.metaData).to.have.property('message') + // expect(res.body.metaData.message).to.contain("موجود") + + // done() + // }) + // }) + // it('200', (done) => { + // api.post('/service/addToBasket') + // .expect(200) + // .set('Cookie', cookie) + // .send({ productId : firstProduct , + // quantity :firstQuantity}) + // .end((err, res) => { + // if (err) { + // done(err) + // } + // expect(res.body.data).to.have.property('items') + // expect(res.body.data.items).to.be.an('array') + // expect(res.body.data.items.map((item) =>item.product)).to.include(firstProduct) + // expect(res.body.data.items.map((item) =>item.quantity)).to.include(firstQuantity) + // done() + // }) + // }) + +//}) \ No newline at end of file diff --git a/server/yarn.lock b/server/yarn.lock new file mode 100755 index 0000000..699c06c --- /dev/null +++ b/server/yarn.lock @@ -0,0 +1,2289 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@dabh/diagnostics@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@dabh/diagnostics/-/diagnostics-2.0.2.tgz#290d08f7b381b8f94607dc8f471a12c675f9db31" + integrity sha512-+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q== + dependencies: + colorspace "1.1.x" + enabled "2.0.x" + kuler "^2.0.0" + +"@types/body-parser@*": + version "1.19.0" + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.0.tgz#0685b3c47eb3006ffed117cdd55164b61f80538f" + integrity sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ== + dependencies: + "@types/connect" "*" + "@types/node" "*" + +"@types/bson@*": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/bson/-/bson-4.0.2.tgz#7accb85942fc39bbdb7515d4de437c04f698115f" + integrity sha512-+uWmsejEHfmSjyyM/LkrP0orfE2m5Mx9Xel4tXNeqi1ldK5XMQcDsFkBmLDtuyKUbxj2jGDo0H240fbCRJZo7Q== + dependencies: + "@types/node" "*" + +"@types/connect-mongo@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@types/connect-mongo/-/connect-mongo-3.1.3.tgz#4ff124a30e530dd2dae4725cfd28ca0b9badbfd1" + integrity sha512-h162kWzfphobvJOttkYKLXEQQmZuOlOSA1IszOusQhguCGf+/B8k4H373SJ0BtVv+qkXP/lziEuUfZDNfzZ1tw== + dependencies: + connect-mongo "*" + +"@types/connect@*": + version "3.4.33" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.33.tgz#31610c901eca573b8713c3330abc6e6b9f588546" + integrity sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A== + dependencies: + "@types/node" "*" + +"@types/express-serve-static-core@*": + version "4.17.12" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.12.tgz#9a487da757425e4f267e7d1c5720226af7f89591" + integrity sha512-EaEdY+Dty1jEU7U6J4CUWwxL+hyEGMkO5jan5gplfegUgCUsIUWqXxqw47uGjimeT4Qgkz/XUfwoau08+fgvKA== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + +"@types/express-session@^1.17.0": + version "1.17.0" + resolved "https://registry.yarnpkg.com/@types/express-session/-/express-session-1.17.0.tgz#770daf81368f6278e3e40dd894e1e52abbdca0cd" + integrity sha512-OQEHeBFE1UhChVIBhRh9qElHUvTp4BzKKHxMDkGHT7WuYk5eL93hPG7D8YAIkoBSbhNEY0RjreF15zn+U0eLjA== + dependencies: + "@types/express" "*" + "@types/node" "*" + +"@types/express@*", "@types/express@^4.17.6": + version "4.17.8" + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.8.tgz#3df4293293317e61c60137d273a2e96cd8d5f27a" + integrity sha512-wLhcKh3PMlyA2cNAB9sjM1BntnhPMiM0JOBwPBqttjHev2428MLEB4AYVN+d8s2iyCVZac+o41Pflm/ZH5vLXQ== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "*" + "@types/qs" "*" + "@types/serve-static" "*" + +"@types/mime@*": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.3.tgz#c893b73721db73699943bfc3653b1deb7faa4a3a" + integrity sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q== + +"@types/mongodb@^3.5.25": + version "3.5.27" + resolved "https://registry.yarnpkg.com/@types/mongodb/-/mongodb-3.5.27.tgz#158a7a43ce25ef3592ac8a62e62ab38bebf661f2" + integrity sha512-1jxKDgdfJEOO9zp+lv43p8jOqRs02xPrdUTzAZIVK9tVEySfCEmktL2jEu9A3wOBEOs18yKzpVIKUh8b8ALk3w== + dependencies: + "@types/bson" "*" + "@types/node" "*" + +"@types/node@*", "@types/node@^14.0.11": + version "14.11.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.11.1.tgz#56af902ad157e763f9ba63d671c39cda3193c835" + integrity sha512-oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw== + +"@types/qs@*": + version "6.9.5" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.5.tgz#434711bdd49eb5ee69d90c1d67c354a9a8ecb18b" + integrity sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ== + +"@types/range-parser@*": + version "1.2.3" + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c" + integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA== + +"@types/serve-static@*": + version "1.13.5" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.5.tgz#3d25d941a18415d3ab092def846e135a08bbcf53" + integrity sha512-6M64P58N+OXjU432WoLLBQxbA0LRGBCRm7aAGQJ+SMC1IMl0dgRVi9EFfoDcS2a7Xogygk/eGN94CfwU9UF7UQ== + dependencies: + "@types/express-serve-static-core" "*" + "@types/mime" "*" + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +accept-language@^3.0.18: + version "3.0.18" + resolved "https://registry.yarnpkg.com/accept-language/-/accept-language-3.0.18.tgz#f5025f17bf65a466a845838ccf98cdb877d83384" + integrity sha1-9QJfF79lpGaoRYOMz5jNuHfYM4Q= + dependencies: + bcp47 "^1.1.2" + stable "^0.1.6" + +accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: + version "1.3.7" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" + integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== + dependencies: + mime-types "~2.1.24" + negotiator "0.6.2" + +after@0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" + integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= + +amqp@^0.2.7: + version "0.2.7" + resolved "https://registry.yarnpkg.com/amqp/-/amqp-0.2.7.tgz#738cfc45fd9c99260b45d5fafc32ed000841e1b1" + integrity sha1-c4z8Rf2cmSYLRdX6/DLtAAhB4bE= + dependencies: + lodash "^4.0.0" + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + +append-field@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/append-field/-/append-field-1.0.0.tgz#1e3440e915f0b1203d23748e78edd7b9b5b43e56" + integrity sha1-HjRA6RXwsSA9I3SOeO3XubW0PlY= + +aproba@^1.0.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + +are-we-there-yet@~1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" + integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= + +arraybuffer.slice@~0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" + integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog== + +async-limiter@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== + +async@^3.1.0, async@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720" + integrity sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw== + +axios@^0.20.0: + version "0.20.0" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.20.0.tgz#057ba30f04884694993a8cd07fa394cff11c50bd" + integrity sha512-ANA4rr2BDcmmAQLOKft2fufrtuvlqR+cXNNinUmvfeSNCOF98PZL+7M/v1zIdGo7OLjEA9J2gXJL+j4zGsl0bA== + dependencies: + follow-redirects "^1.10.0" + +backo2@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" + integrity sha1-MasayLEpNjRj41s+u2n038+6eUc= + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + +base64-arraybuffer@0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" + integrity sha1-c5JncZI7Whl0etZmqlzUv5xunOg= + +base64-js@^1.0.2: + version "1.3.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" + integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== + +base64id@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6" + integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog== + +basic-auth@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a" + integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg== + dependencies: + safe-buffer "5.1.2" + +bcp47@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/bcp47/-/bcp47-1.1.2.tgz#354be3307ffd08433a78f5e1e2095845f89fc7fe" + integrity sha1-NUvjMH/9CEM6ePXh4glYRfifx/4= + +bcrypt@^3.0.7: + version "3.0.8" + resolved "https://registry.yarnpkg.com/bcrypt/-/bcrypt-3.0.8.tgz#fe437b7569faffc1105c3c3f6e7d2913e3d3bea5" + integrity sha512-jKV6RvLhI36TQnPDvUFqBEnGX9c8dRRygKxCZu7E+MgLfKZbmmXL8a7/SFFOyHoPNX9nV81cKRC5tbQfvEQtpw== + dependencies: + nan "2.14.0" + node-pre-gyp "0.14.0" + +better-assert@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" + integrity sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI= + dependencies: + callsite "1.0.0" + +bl@^2.0.1, bl@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/bl/-/bl-2.2.1.tgz#8c11a7b730655c5d56898cdc871224f40fd901d5" + integrity sha512-6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g== + dependencies: + readable-stream "^2.3.5" + safe-buffer "^5.1.1" + +blob@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683" + integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig== + +bluebird@3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" + integrity sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA== + +bluebird@^3.7.2: + version "3.7.2" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +body-parser@1.19.0, body-parser@^1.19.0: + version "1.19.0" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" + integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== + dependencies: + bytes "3.1.0" + content-type "~1.0.4" + debug "2.6.9" + depd "~1.1.2" + http-errors "1.7.2" + iconv-lite "0.4.24" + on-finished "~2.3.0" + qs "6.7.0" + raw-body "2.4.0" + type-is "~1.6.17" + +bowser@2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.9.0.tgz#3bed854233b419b9a7422d9ee3e85504373821c9" + integrity sha512-2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +bson@^1.0.6, bson@^1.1.4: + version "1.1.5" + resolved "https://registry.yarnpkg.com/bson/-/bson-1.1.5.tgz#2aaae98fcdf6750c0848b0cba1ddec3c73060a34" + integrity sha512-kDuEzldR21lHciPQAIulLs1LZlCXdLziXI6Mb/TDkwXhb//UORJNPXgcRs2CuO4H0DcMkpfT3/ySsP3unoZjBg== + +buffer-from@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + +buffer@^5.1.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786" + integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw== + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + +busboy@^0.2.11: + version "0.2.14" + resolved "https://registry.yarnpkg.com/busboy/-/busboy-0.2.14.tgz#6c2a622efcf47c57bbbe1e2a9c37ad36c7925453" + integrity sha1-bCpiLvz0fFe7vh4qnDetNseSVFM= + dependencies: + dicer "0.2.5" + readable-stream "1.1.x" + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= + +bytes@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== + +callsite@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" + integrity sha1-KAOY5dZkvXQDi28JBRU+borxvCA= + +camelize@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" + integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs= + +charenc@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= + +chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + +cldrjs@^0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/cldrjs/-/cldrjs-0.5.4.tgz#a566d72f2b1f62b4b65c7e15582768176e337622" + integrity sha512-6QkI7oPLUZ9vA5BQAmUOfh5JIpESfnYy/M8d7Ddl9Yx+z2TAnQgnc3kbgjkIgxsk5Y0tOY+n6itMWXzQQQ2IWg== + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + +color-convert@^1.9.1: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +color-name@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.5.2: + version "1.5.3" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" + integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color@3.0.x: + version "3.0.0" + resolved "https://registry.yarnpkg.com/color/-/color-3.0.0.tgz#d920b4328d534a3ac8295d68f7bd4ba6c427be9a" + integrity sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w== + dependencies: + color-convert "^1.9.1" + color-string "^1.5.2" + +colors@^1.2.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" + integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== + +colorspace@1.1.x: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colorspace/-/colorspace-1.1.2.tgz#e0128950d082b86a2168580796a0aa5d6c68d8c5" + integrity sha512-vt+OoIP2d76xLhjwbBaucYlNSpPsrJWPlBTtwCpQKIu6/CSMutyzX93O/Do0qzpH3YoHEes8YEFXyZ797rEhzQ== + dependencies: + color "3.0.x" + text-hex "1.0.x" + +component-bind@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" + integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E= + +component-emitter@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= + +component-emitter@~1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + +component-inherit@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" + integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM= + +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression@^1.7.4: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + 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" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +concat-stream@^1.5.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +connect-mongo@*, connect-mongo@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/connect-mongo/-/connect-mongo-3.2.0.tgz#20f776c7f2a9d8144fc76cfdcbf33edb05eb4d52" + integrity sha512-0Mx88079Z20CG909wCFlR3UxhMYGg6Ibn1hkIje1hwsqOLWtL9HJV+XD0DAjUvQScK6WqY/FA8tSVQM9rR64Rw== + dependencies: + mongodb "^3.1.0" + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= + +content-disposition@0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" + integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== + dependencies: + safe-buffer "5.1.2" + +content-security-policy-builder@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz#0a2364d769a3d7014eec79ff7699804deb8cfcbb" + integrity sha512-/MtLWhJVvJNkA9dVLAp6fg9LxD2gfI6R2Fi1hPmfjYXSahJJzcfvoeDOxSyp4NvxMuwWv3WMssE9o31DoULHrQ== + +content-type@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + +cookie-parser@^1.4.4: + version "1.4.5" + resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.4.5.tgz#3e572d4b7c0c80f9c61daf604e4336831b5d1d49" + integrity sha512-f13bPUj/gG/5mDr+xLmSxxDsB9DQiTIfhJS/sqjrmfAWiAN+x2O4i/XguTL9yDZ+/IFDanJ+5x7hC4CXT9Tdzw== + dependencies: + cookie "0.4.0" + cookie-signature "1.0.6" + +cookie-parser@~1.3.3: + version "1.3.5" + resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.3.5.tgz#9d755570fb5d17890771227a02314d9be7cf8356" + integrity sha1-nXVVcPtdF4kHcSJ6AjFNm+fPg1Y= + dependencies: + cookie "0.1.3" + cookie-signature "1.0.6" + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= + +cookie@0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.1.3.tgz#e734a5c1417fce472d5aef82c381cabb64d1a435" + integrity sha1-5zSlwUF/zkctWu+Cw4HKu2TRpDU= + +cookie@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= + +cookie@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" + integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== + +core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +cors@^2.8.5: + version "2.8.5" + resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" + integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== + dependencies: + object-assign "^4" + vary "^1" + +crc@^3.3.0: + version "3.8.0" + resolved "https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz#ad60269c2c856f8c299e2c4cc0de4556914056c6" + integrity sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ== + dependencies: + buffer "^5.1.0" + +cross-spawn@^7.0.0: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypt@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs= + +csrf@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/csrf/-/csrf-3.1.0.tgz#ec75e9656d004d674b8ef5ba47b41fbfd6cb9c30" + integrity sha512-uTqEnCvWRk042asU6JtapDTcJeeailFy4ydOQS28bj1hcLnYRiqi8SsD2jS412AY1I/4qdOwWZun774iqywf9w== + dependencies: + rndm "1.2.0" + tsscmp "1.0.6" + uid-safe "2.1.5" + +csurf@^1.10.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/csurf/-/csurf-1.11.0.tgz#ab0c3c6634634192bd3d6f4b861be20800eeb61a" + integrity sha512-UCtehyEExKTxgiu8UHdGvHj4tnpE/Qctue03Giq5gPgMQ9cg/ciod5blZQ5a4uCEenNQjxyGuzygLdKUmee/bQ== + dependencies: + cookie "0.4.0" + cookie-signature "1.0.6" + csrf "3.1.0" + http-errors "~1.7.3" + +dasherize@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dasherize/-/dasherize-2.0.0.tgz#6d809c9cd0cf7bb8952d80fc84fa13d47ddb1308" + integrity sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg= + +debug@2.6.9, debug@~2.6.0: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@3.1.0, debug@~3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" + integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== + dependencies: + ms "2.0.0" + +debug@^3.2.6: + version "3.2.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" + integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== + dependencies: + ms "^2.1.1" + +debug@^4.1.0, debug@^4.1.1, debug@~4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== + dependencies: + ms "^2.1.1" + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= + +denque@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/denque/-/denque-1.4.1.tgz#6744ff7641c148c3f8a69c307e51235c1f4a37cf" + integrity sha512-OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ== + +depd@2.0.0, depd@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= + +destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= + +detect-libc@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= + +dicer@0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/dicer/-/dicer-0.2.5.tgz#5996c086bb33218c812c090bddc09cd12facb70f" + integrity sha1-WZbAhrszIYyBLAkL3cCc0S+stw8= + dependencies: + readable-stream "1.1.x" + streamsearch "0.1.2" + +dont-sniff-mimetype@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz#c7d0427f8bcb095762751252af59d148b0a623b2" + integrity sha512-ZjI4zqTaxveH2/tTlzS1wFp+7ncxNZaIEWYg3lzZRHkKf5zPT/MnEG6WL0BhHMJUabkh8GeU5NL5j+rEUCb7Ug== + +dotenv@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== + +double-ended-queue@^2.1.0-0: + version "2.1.0-0" + resolved "https://registry.yarnpkg.com/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz#103d3527fd31528f40188130c841efdd78264e5c" + integrity sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw= + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= + +enabled@2.0.x: + version "2.0.0" + resolved "https://registry.yarnpkg.com/enabled/-/enabled-2.0.0.tgz#f9dd92ec2d6f4bbc0d5d1e64e21d61cd4665e7c2" + integrity sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= + +end-of-stream@^1.1.0: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +engine.io-client@~3.4.0: + version "3.4.3" + resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.4.3.tgz#192d09865403e3097e3575ebfeb3861c4d01a66c" + integrity sha512-0NGY+9hioejTEJCaSJZfWZLk4FPI9dN+1H1C4+wj2iuFba47UgZbJzfWs4aNFajnX/qAaYKbe2lLTfEEWzCmcw== + dependencies: + component-emitter "~1.3.0" + component-inherit "0.0.3" + debug "~4.1.0" + engine.io-parser "~2.2.0" + has-cors "1.1.0" + indexof "0.0.1" + parseqs "0.0.5" + parseuri "0.0.5" + ws "~6.1.0" + xmlhttprequest-ssl "~1.5.4" + yeast "0.1.2" + +engine.io-parser@~2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.2.0.tgz#312c4894f57d52a02b420868da7b5c1c84af80ed" + integrity sha512-6I3qD9iUxotsC5HEMuuGsKA0cXerGz+4uGcXQEkfBidgKf0amsjrrtwcbwK/nzpZBxclXlV7gGl9dgWvu4LF6w== + dependencies: + after "0.8.2" + arraybuffer.slice "~0.0.7" + base64-arraybuffer "0.1.5" + blob "0.0.5" + has-binary2 "~1.0.2" + +engine.io@~3.4.0: + version "3.4.2" + resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-3.4.2.tgz#8fc84ee00388e3e228645e0a7d3dfaeed5bd122c" + integrity sha512-b4Q85dFkGw+TqgytGPrGgACRUhsdKc9S9ErRAXpPGy/CXKs4tYoHDkvIRdsseAF7NjfVwjRFIn6KTnbw7LwJZg== + dependencies: + accepts "~1.3.4" + base64id "2.0.0" + cookie "0.3.1" + debug "~4.1.0" + engine.io-parser "~2.2.0" + ws "^7.1.2" + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= + +execa@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.3.tgz#0a34dabbad6d66100bd6f2c576c8669403f317f2" + integrity sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A== + dependencies: + cross-spawn "^7.0.0" + get-stream "^5.0.0" + human-signals "^1.1.1" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.0" + onetime "^5.1.0" + signal-exit "^3.0.2" + strip-final-newline "^2.0.0" + +express-session@^1.17.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/express-session/-/express-session-1.17.1.tgz#36ecbc7034566d38c8509885c044d461c11bf357" + integrity sha512-UbHwgqjxQZJiWRTMyhvWGvjBQduGCSBDhhZXYenziMFjxst5rMV+aJZ6hKPHZnPyHGsrqRICxtX8jtEbm/z36Q== + dependencies: + cookie "0.4.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~2.0.0" + on-headers "~1.0.2" + parseurl "~1.3.3" + safe-buffer "5.2.0" + uid-safe "~2.1.5" + +express-socket.io-session@^1.3.5: + version "1.3.5" + resolved "https://registry.yarnpkg.com/express-socket.io-session/-/express-socket.io-session-1.3.5.tgz#48fbec779388a2d8bbf91ddfec4e09c028c8407c" + integrity sha512-ila9jN7Pu9OuNIDzkuW+ZChR2Y0TzyyFITT7xiOWCjuGCDUWioD382zqxI7HOaa8kIhfs3wTLOZMU9h6buuOFw== + dependencies: + cookie-parser "~1.3.3" + crc "^3.3.0" + debug "~2.6.0" + +express-useragent@^1.0.13: + version "1.0.15" + resolved "https://registry.yarnpkg.com/express-useragent/-/express-useragent-1.0.15.tgz#cefda5fa4904345d51d3368b117a8dd4124985d9" + integrity sha512-eq5xMiYCYwFPoekffMjvEIk+NWdlQY9Y38OsTyl13IvA728vKT+q/CSERYWzcw93HGBJcIqMIsZC5CZGARPVdg== + +express-validator@^6.3.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/express-validator/-/express-validator-6.6.1.tgz#c53046f615d27fcb78be786e018dcd60bd9c6c5c" + integrity sha512-+MrZKJ3eGYXkNF9p9Zf7MS7NkPJFg9MDYATU5c80Cf4F62JdLBIjWxy6481tRC0y1NnC9cgOw8FuN364bWaGhA== + dependencies: + lodash "^4.17.19" + validator "^13.1.1" + +express@^4.17.1: + version "4.17.1" + resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" + integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== + dependencies: + accepts "~1.3.7" + array-flatten "1.1.1" + body-parser "1.19.0" + content-disposition "0.5.3" + content-type "~1.0.4" + cookie "0.4.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~1.1.2" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "~1.1.2" + fresh "0.5.2" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.5" + qs "6.7.0" + range-parser "~1.2.1" + safe-buffer "5.1.2" + send "0.17.1" + serve-static "1.14.1" + setprototypeof "1.1.1" + statuses "~1.5.0" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +faker@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/faker/-/faker-4.1.0.tgz#1e45bbbecc6774b3c195fad2835109c6d748cc3f" + integrity sha1-HkW7vsxndLPBlfrSg1EJxtdIzD8= + +fast-safe-stringify@^2.0.4: + version "2.0.7" + resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz#124aa885899261f68aedb42a7c080de9da608743" + integrity sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA== + +feature-policy@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/feature-policy/-/feature-policy-0.3.0.tgz#7430e8e54a40da01156ca30aaec1a381ce536069" + integrity sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ== + +fecha@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/fecha/-/fecha-4.2.0.tgz#3ffb6395453e3f3efff850404f0a59b6747f5f41" + integrity sha512-aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg== + +finalhandler@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.3" + statuses "~1.5.0" + unpipe "~1.0.0" + +fn.name@1.x.x: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fn.name/-/fn.name-1.1.0.tgz#26cad8017967aea8731bc42961d04a3d5988accc" + integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== + +follow-redirects@^1.10.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db" + integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA== + +forwarded@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= + +fs-minipass@^1.2.5: + version "1.2.7" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" + integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== + dependencies: + minipass "^2.6.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +get-stream@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== + dependencies: + pump "^3.0.0" + +glob@^7.0.5, glob@^7.1.3: + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globalize@^1.5.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/globalize/-/globalize-1.6.0.tgz#b6c659cfa6a47fa1a8279187a45689560d8591b1" + integrity sha512-MTuAU3Tnbtga8PvxbpSPdQNIs6K5UdATWIuarWJK2Z3e1DghXpxb/GmShSVagzHqCOYgZr7N/Hi7D1mrHG30jQ== + dependencies: + cldrjs "^0.5.4" + +has-binary2@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" + integrity sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw== + dependencies: + isarray "2.0.1" + +has-cors@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" + integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk= + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= + +helmet-crossdomain@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz#5f1fe5a836d0325f1da0a78eaa5fd8429078894e" + integrity sha512-AB4DTykRw3HCOxovD1nPR16hllrVImeFp5VBV9/twj66lJ2nU75DP8FPL0/Jp4jj79JhTfG+pFI2MD02kWJ+fA== + +helmet-csp@2.10.0: + version "2.10.0" + resolved "https://registry.yarnpkg.com/helmet-csp/-/helmet-csp-2.10.0.tgz#685dde1747bc16c5e28ad9d91e229a69f0a85e84" + integrity sha512-Rz953ZNEFk8sT2XvewXkYN0Ho4GEZdjAZy4stjiEQV3eN7GDxg1QKmYggH7otDyIA7uGA6XnUMVSgeJwbR5X+w== + dependencies: + bowser "2.9.0" + camelize "1.0.0" + content-security-policy-builder "2.1.0" + dasherize "2.0.0" + +helmet@^3.21.2: + version "3.23.3" + resolved "https://registry.yarnpkg.com/helmet/-/helmet-3.23.3.tgz#5ba30209c5f73ded4ab65746a3a11bedd4579ab7" + integrity sha512-U3MeYdzPJQhtvqAVBPntVgAvNSOJyagwZwyKsFdyRa8TV3pOKVFljalPOCxbw5Wwf2kncGhmP0qHjyazIdNdSA== + dependencies: + depd "2.0.0" + dont-sniff-mimetype "1.1.0" + feature-policy "0.3.0" + helmet-crossdomain "0.4.0" + helmet-csp "2.10.0" + hide-powered-by "1.1.0" + hpkp "2.0.0" + hsts "2.2.0" + nocache "2.1.0" + referrer-policy "1.2.0" + x-xss-protection "1.3.0" + +hide-powered-by@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/hide-powered-by/-/hide-powered-by-1.1.0.tgz#be3ea9cab4bdb16f8744be873755ca663383fa7a" + integrity sha512-Io1zA2yOA1YJslkr+AJlWSf2yWFkKjvkcL9Ni1XSUqnGLr/qRQe2UI3Cn/J9MsJht7yEVCe0SscY1HgVMujbgg== + +hpkp@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/hpkp/-/hpkp-2.0.0.tgz#10e142264e76215a5d30c44ec43de64dee6d1672" + integrity sha1-EOFCJk52IVpdMMROxD3mTe5tFnI= + +hsts@2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/hsts/-/hsts-2.2.0.tgz#09119d42f7a8587035d027dda4522366fe75d964" + integrity sha512-ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ== + dependencies: + depd "2.0.0" + +http-errors@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" + integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + +http-errors@~1.7.2, http-errors@~1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" + integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + +human-signals@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" + integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== + +iconv-lite@0.4.24, iconv-lite@^0.4.4: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ieee754@^1.1.4: + version "1.1.13" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" + integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== + +ignore-walk@^3.0.1: + version "3.0.3" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" + integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== + dependencies: + minimatch "^3.0.4" + +indexof@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10= + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + +ini@~1.3.0: + version "1.3.5" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== + +invert-kv@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-3.0.1.tgz#a93c7a3d4386a1dc8325b97da9bb1620c0282523" + integrity sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw== + +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-buffer@~1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" + integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= + +isarray@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" + integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +kareem@2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/kareem/-/kareem-2.3.1.tgz#def12d9c941017fabfb00f873af95e9c99e1be87" + integrity sha512-l3hLhffs9zqoDe8zjmb/mAN4B8VT3L56EUvKNqLFVs9YlFA+zx7ke1DO8STAdDyYNkeSo1nKmjuvQeI12So8Xw== + +kuler@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/kuler/-/kuler-2.0.0.tgz#e2c570a3800388fb44407e851531c1d670b061b3" + integrity sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A== + +lcid@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-3.1.1.tgz#9030ec479a058fc36b5e8243ebaac8b6ac582fd0" + integrity sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg== + dependencies: + invert-kv "^3.0.0" + +lodash@^4.0.0, lodash@^4.17.15, lodash@^4.17.19: + version "4.17.20" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" + integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== + +logform@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/logform/-/logform-2.2.0.tgz#40f036d19161fc76b68ab50fdc7fe495544492f2" + integrity sha512-N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg== + dependencies: + colors "^1.2.1" + fast-safe-stringify "^2.0.4" + fecha "^4.2.0" + ms "^2.1.1" + triple-beam "^1.3.0" + +loopback-connector-mongodb@^5.2.1: + version "5.4.0" + resolved "https://registry.yarnpkg.com/loopback-connector-mongodb/-/loopback-connector-mongodb-5.4.0.tgz#426da9c73c47d5cd8f7a6c9c7b2c6e602038b313" + integrity sha512-8wwT6H9KZAgSH5d0U/FzEyiJc7mxhOWSNxtUjj3xrIFQtz3+H/yrs0SQHqodwc8dcQDTZOpQAlA7HhpRWuXU/g== + dependencies: + async "^3.1.0" + bson "^1.0.6" + debug "^4.1.0" + loopback-connector "^5.0.0" + mongodb "^3.2.4" + strong-globalize "^6.0.0" + +loopback-connector@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/loopback-connector/-/loopback-connector-5.0.0.tgz#5379da6c96fb27bbce3882b1d66884d3bb47a323" + integrity sha512-LdMGKc+XJDkf6agtRsc2W0O6jWEAjyjwr7cD+8FIypzynQg89Ks8pQCheL4Sfns5MBqd+33HRXlH6YG/rr4zyQ== + dependencies: + async "^3.2.0" + bluebird "^3.7.2" + debug "^4.1.1" + msgpack5 "^4.2.0" + strong-globalize "^6.0.4" + uuid "^8.3.0" + +map-age-cleaner@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + dependencies: + p-defer "^1.0.0" + +md5@^2.2.1: + version "2.3.0" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" + integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== + dependencies: + charenc "0.0.2" + crypt "0.0.2" + is-buffer "~1.1.6" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= + +mem@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/mem/-/mem-5.1.1.tgz#7059b67bf9ac2c924c9f1cff7155a064394adfb3" + integrity sha512-qvwipnozMohxLXG1pOqoLiZKNkC4r4qqRucSoDwXowsNGDSULiqFTRUF05vcZWnwJSG22qTsynQhxbaMtnX9gw== + dependencies: + map-age-cleaner "^0.1.3" + mimic-fn "^2.1.0" + p-is-promise "^2.1.0" + +memory-pager@^1.0.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/memory-pager/-/memory-pager-1.5.0.tgz#d8751655d22d384682741c972f2c3d6dfa3e66b5" + integrity sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg== + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= + +mime-db@1.44.0, "mime-db@>= 1.43.0 < 2": + version "1.44.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" + integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== + +mime-types@~2.1.24: + version "2.1.27" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" + integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== + dependencies: + mime-db "1.44.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.0, minimist@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" + integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== + +minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" + integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== + dependencies: + safe-buffer "^5.1.2" + yallist "^3.0.0" + +minizlib@^1.2.1: + version "1.3.3" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" + integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== + dependencies: + minipass "^2.9.0" + +mkdirp@^0.5.0, mkdirp@^0.5.1: + version "0.5.5" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" + integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== + dependencies: + minimist "^1.2.5" + +mkdirp@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +moment-timezone@^0.5.31: + version "0.5.31" + resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.31.tgz#9c40d8c5026f0c7ab46eda3d63e49c155148de05" + integrity sha512-+GgHNg8xRhMXfEbv81iDtrVeTcWt0kWmTEY1XQK14dICTXnWJnT0dxdlPspwqF3keKMVPXwayEsk1DI0AA/jdA== + dependencies: + moment ">= 2.9.0" + +"moment@>= 2.9.0", moment@^2.24.0: + version "2.28.0" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.28.0.tgz#cdfe73ce01327cee6537b0fafac2e0f21a237d75" + integrity sha512-Z5KOjYmnHyd/ukynmFd/WwyXHd7L4J9vTI/nn5Ap9AVUgaAE15VvQ9MOGmJJygEUklupqIrFnor/tjTwRU+tQw== + +mongodb@3.6.2, mongodb@^3.1.0, mongodb@^3.2.4, mongodb@^3.4.1: + version "3.6.2" + resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-3.6.2.tgz#1154a4ac107bf1375112d83a29c5cf97704e96b6" + integrity sha512-sSZOb04w3HcnrrXC82NEh/YGCmBuRgR+C1hZgmmv4L6dBz4BkRse6Y8/q/neXer9i95fKUBbFi4KgeceXmbsOA== + dependencies: + bl "^2.2.1" + bson "^1.1.4" + denque "^1.4.1" + require_optional "^1.0.1" + safe-buffer "^5.1.2" + optionalDependencies: + saslprep "^1.0.0" + +mongoose-legacy-pluralize@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/mongoose-legacy-pluralize/-/mongoose-legacy-pluralize-1.0.2.tgz#3ba9f91fa507b5186d399fb40854bff18fb563e4" + integrity sha512-Yo/7qQU4/EyIS8YDFSeenIvXxZN+ld7YdV9LqFVQJzTLye8unujAWPZ4NWKfFA+RNjh+wvTWKY9Z3E5XM6ZZiQ== + +mongoose@^5.8.7: + version "5.10.5" + resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-5.10.5.tgz#47bef488d1fd39ab9c93ab05a9b6d0b08fd8c662" + integrity sha512-BOQZsZn9Y79f3rWZFLD1gvOLNN5gOiGvGr5raqQ5v/T4fdAmnjXGCVynpW4SRnQLtrcCeLXyaaXVRT75863Q0w== + dependencies: + bson "^1.1.4" + kareem "2.3.1" + mongodb "3.6.2" + mongoose-legacy-pluralize "1.0.2" + mpath "0.7.0" + mquery "3.2.2" + ms "2.1.2" + regexp-clone "1.0.0" + safe-buffer "5.2.1" + sift "7.0.1" + sliced "1.0.1" + +morgan@^1.9.1: + version "1.10.0" + resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.10.0.tgz#091778abc1fc47cd3509824653dae1faab6b17d7" + integrity sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ== + dependencies: + basic-auth "~2.0.1" + debug "2.6.9" + depd "~2.0.0" + on-finished "~2.3.0" + on-headers "~1.0.2" + +mpath@0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.7.0.tgz#20e8102e276b71709d6e07e9f8d4d0f641afbfb8" + integrity sha512-Aiq04hILxhz1L+f7sjGyn7IxYzWm1zLNNXcfhDtx04kZ2Gk7uvFdgZ8ts1cWa/6d0TQmag2yR8zSGZUmp0tFNg== + +mquery@3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/mquery/-/mquery-3.2.2.tgz#e1383a3951852ce23e37f619a9b350f1fb3664e7" + integrity sha512-XB52992COp0KP230I3qloVUbkLUxJIu328HBP2t2EsxSFtf4W1HPSOBWOXf1bqxK4Xbb66lfMJ+Bpfd9/yZE1Q== + dependencies: + bluebird "3.5.1" + debug "3.1.0" + regexp-clone "^1.0.0" + safe-buffer "5.1.2" + sliced "1.0.1" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +ms@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + +ms@2.1.2, ms@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +msgpack5@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/msgpack5/-/msgpack5-4.2.1.tgz#007233691af34c4168cea9477cb3236aae854f03" + integrity sha512-Xo7nE9ZfBVonQi1rSopNAqPdts/QHyuSEUwIEzAkB+V2FtmkkLUbP6MyVqVVQxsZYI65FpvW3Bb8Z9ZWEjbgHQ== + dependencies: + bl "^2.0.1" + inherits "^2.0.3" + readable-stream "^2.3.6" + safe-buffer "^5.1.2" + +multer@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/multer/-/multer-1.4.2.tgz#2f1f4d12dbaeeba74cb37e623f234bf4d3d2057a" + integrity sha512-xY8pX7V+ybyUpbYMxtjM9KAiD9ixtg5/JkeKUTD6xilfDv0vzzOFcCp4Ljb1UU3tSOM3VTZtKo63OmzOrGi3Cg== + dependencies: + append-field "^1.0.0" + busboy "^0.2.11" + concat-stream "^1.5.2" + mkdirp "^0.5.1" + object-assign "^4.1.1" + on-finished "^2.3.0" + type-is "^1.6.4" + xtend "^4.0.0" + +nan@2.14.0: + version "2.14.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" + integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== + +needle@^2.2.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/needle/-/needle-2.5.2.tgz#cf1a8fce382b5a280108bba90a14993c00e4010a" + integrity sha512-LbRIwS9BfkPvNwNHlsA41Q29kL2L/6VaOJ0qisM5lLWsTV3nP15abO5ITL6L81zqFhzjRKDAYjpcBcwM0AVvLQ== + dependencies: + debug "^3.2.6" + iconv-lite "^0.4.4" + sax "^1.2.4" + +negotiator@0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" + integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== + +nocache@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz#120c9ffec43b5729b1d5de88cd71aa75a0ba491f" + integrity sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q== + +node-fetch@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" + integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== + +node-pre-gyp@0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz#9a0596533b877289bcad4e143982ca3d904ddc83" + integrity sha512-+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA== + dependencies: + detect-libc "^1.0.2" + mkdirp "^0.5.1" + needle "^2.2.1" + nopt "^4.0.1" + npm-packlist "^1.1.6" + npmlog "^4.0.2" + rc "^1.2.7" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^4.4.2" + +nodemailer@^6.4.2: + version "6.4.11" + resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.4.11.tgz#1f00b4ffd106403f17c03f3d43d5945b2677046c" + integrity sha512-BVZBDi+aJV4O38rxsUh164Dk1NCqgh6Cm0rQSb9SK/DHGll/DrCMnycVDD7msJgZCnmVa8ASo8EZzR7jsgTukQ== + +nopt@^4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" + integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== + dependencies: + abbrev "1" + osenv "^0.1.4" + +notepack.io@~2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/notepack.io/-/notepack.io-2.2.0.tgz#d7ea71d1cb90094f88c6f3c8d84277c2d0cd101c" + integrity sha512-9b5w3t5VSH6ZPosoYnyDONnUTF8o0UkBw7JLA6eBlYJWyGT1Q3vQa8Hmuj1/X6RYvHjjygBDgw6fJhe0JEojfw== + +npm-bundled@^1.0.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" + integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== + dependencies: + npm-normalize-package-bin "^1.0.1" + +npm-normalize-package-bin@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" + integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== + +npm-packlist@^1.1.6: + version "1.4.8" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" + integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== + dependencies: + ignore-walk "^3.0.1" + npm-bundled "^1.0.1" + npm-normalize-package-bin "^1.0.1" + +npm-run-path@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +npmlog@^4.0.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + +object-assign@^4, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +object-component@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" + integrity sha1-8MaapQ78lbhmwYb0AKM3acsvEpE= + +on-finished@^2.3.0, on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +one-time@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/one-time/-/one-time-1.0.0.tgz#e06bc174aed214ed58edede573b433bbf827cb45" + integrity sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g== + dependencies: + fn.name "1.x.x" + +onetime@^5.1.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= + +os-locale@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-5.0.0.tgz#6d26c1d95b6597c5d5317bf5fba37eccec3672e0" + integrity sha512-tqZcNEDAIZKBEPnHPlVDvKrp7NzgLi7jRmhKiUoa2NUmhl13FtkAGLUVR+ZsYvApBQdBfYm43A4tXXQ4IrYLBA== + dependencies: + execa "^4.0.0" + lcid "^3.0.0" + mem "^5.0.0" + +os-tmpdir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +osenv@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= + +p-is-promise@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" + integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== + +parseqs@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" + integrity sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0= + dependencies: + better-assert "~1.0.0" + +parseuri@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" + integrity sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo= + dependencies: + better-assert "~1.0.0" + +parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +proxy-addr@~2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" + integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== + dependencies: + forwarded "~0.1.2" + ipaddr.js "1.9.1" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +qs@6.7.0: + version "6.7.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" + integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== + +random-bytes@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" + integrity sha1-T2ih3Arli9P7lYSMMDJNt11kNgs= + +range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +rate-limiter-flexible@^1.2.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/rate-limiter-flexible/-/rate-limiter-flexible-1.3.2.tgz#2e2e8730f76bc3c349e9941d1826d40603bcca55" + integrity sha512-f+xNvGn+52G4nZVok9VB3LTE1kfDmqbnWKRayX5n2k/LEQ7doWrYvzmzFVh7ltmLgwEdEzoYwxGaXlfCjFg4Ag== + +raw-body@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" + integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== + dependencies: + bytes "3.1.0" + http-errors "1.7.2" + iconv-lite "0.4.24" + unpipe "1.0.0" + +rc@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +readable-stream@1.1.x: + version "1.1.14" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@^2.3.7: + version "2.3.7" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.4.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +redis-commands@^1.2.0, redis-commands@^1.5.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.6.0.tgz#36d4ca42ae9ed29815cdb30ad9f97982eba1ce23" + integrity sha512-2jnZ0IkjZxvguITjFTrGiLyzQZcTvaw8DAaCXxZq/dsHXz7KfMQ3OUJy7Tz9vnRtZRVz6VRCPDvruvU8Ts44wQ== + +redis-errors@^1.0.0, redis-errors@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/redis-errors/-/redis-errors-1.2.0.tgz#eb62d2adb15e4eaf4610c04afe1529384250abad" + integrity sha1-62LSrbFeTq9GEMBK/hUpOEJQq60= + +redis-parser@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/redis-parser/-/redis-parser-2.6.0.tgz#52ed09dacac108f1a631c07e9b69941e7a19504b" + integrity sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs= + +redis-parser@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redis-parser/-/redis-parser-3.0.0.tgz#b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4" + integrity sha1-tm2CjNyv5rS4pCin3vTGvKwxyLQ= + dependencies: + redis-errors "^1.0.0" + +redis@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/redis/-/redis-2.8.0.tgz#202288e3f58c49f6079d97af7a10e1303ae14b02" + integrity sha512-M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A== + dependencies: + double-ended-queue "^2.1.0-0" + redis-commands "^1.2.0" + redis-parser "^2.6.0" + +redis@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/redis/-/redis-3.0.2.tgz#bd47067b8a4a3e6a2e556e57f71cc82c7360150a" + integrity sha512-PNhLCrjU6vKVuMOyFu7oSP296mwBkcE6lrAjruBYG5LgdSqtRBoVQIylrMyVZD/lkF24RSNNatzvYag6HRBHjQ== + dependencies: + denque "^1.4.1" + redis-commands "^1.5.0" + redis-errors "^1.2.0" + redis-parser "^3.0.0" + +referrer-policy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/referrer-policy/-/referrer-policy-1.2.0.tgz#b99cfb8b57090dc454895ef897a4cc35ef67a98e" + integrity sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA== + +reflect-metadata@^0.1.13: + version "0.1.13" + resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" + integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg== + +regexp-clone@1.0.0, regexp-clone@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/regexp-clone/-/regexp-clone-1.0.0.tgz#222db967623277056260b992626354a04ce9bf63" + integrity sha512-TuAasHQNamyyJ2hb97IuBEif4qBHGjPHBS64sZwytpLEqtBQ1gPJTnOaQ6qmpET16cK14kkjbazl6+p0RRv0yw== + +require_optional@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.1.tgz#4cf35a4247f64ca3df8c2ef208cc494b1ca8fc2e" + integrity sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g== + dependencies: + resolve-from "^2.0.0" + semver "^5.1.0" + +resolve-from@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" + integrity sha1-lICrIOlP+h2egKgEx+oUdhGWa1c= + +rimraf@^2.6.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + +rndm@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/rndm/-/rndm-1.2.0.tgz#f33fe9cfb52bbfd520aa18323bc65db110a1b76c" + integrity sha1-8z/pz7Urv9UgqhgyO8ZdsRCht2w= + +safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" + integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== + +safe-buffer@5.2.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +saslprep@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/saslprep/-/saslprep-1.0.3.tgz#4c02f946b56cf54297e347ba1093e7acac4cf226" + integrity sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag== + dependencies: + sparse-bitfield "^3.0.3" + +sax@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + +semver@^5.1.0, semver@^5.3.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +send@0.17.1: + version "0.17.1" + resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" + integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== + dependencies: + debug "2.6.9" + depd "~1.1.2" + destroy "~1.0.4" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "~1.7.2" + mime "1.6.0" + ms "2.1.1" + on-finished "~2.3.0" + range-parser "~1.2.1" + statuses "~1.5.0" + +serve-static@1.14.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" + integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.17.1" + +set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +setprototypeof@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +sift@7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/sift/-/sift-7.0.1.tgz#47d62c50b159d316f1372f8b53f9c10cd21a4b08" + integrity sha512-oqD7PMJ+uO6jV9EQCl0LrRw1OwsiPsiFQR5AR30heR+4Dl7jBBbDLnNvWiak20tzZlSE1H7RB30SX/1j/YYT7g== + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" + integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + dependencies: + is-arrayish "^0.3.1" + +sliced@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/sliced/-/sliced-1.0.1.tgz#0b3a662b5d04c3177b1926bea82b03f837a2ef41" + integrity sha1-CzpmK10Ewxd7GSa+qCsD+Dei70E= + +socket.io-adapter@~1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz#ab3f0d6f66b8fc7fca3959ab5991f82221789be9" + integrity sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g== + +socket.io-client@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.3.0.tgz#14d5ba2e00b9bcd145ae443ab96b3f86cbcc1bb4" + integrity sha512-cEQQf24gET3rfhxZ2jJ5xzAOo/xhZwK+mOqtGRg5IowZsMgwvHwnf/mCRapAAkadhM26y+iydgwsXGObBB5ZdA== + dependencies: + backo2 "1.0.2" + base64-arraybuffer "0.1.5" + component-bind "1.0.0" + component-emitter "1.2.1" + debug "~4.1.0" + engine.io-client "~3.4.0" + has-binary2 "~1.0.2" + has-cors "1.1.0" + indexof "0.0.1" + object-component "0.0.3" + parseqs "0.0.5" + parseuri "0.0.5" + socket.io-parser "~3.3.0" + to-array "0.1.4" + +socket.io-parser@~3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.3.0.tgz#2b52a96a509fdf31440ba40fed6094c7d4f1262f" + integrity sha512-hczmV6bDgdaEbVqhAeVMM/jfUfzuEZHsQg6eOmLgJht6G3mPKMxYm75w2+qhAQZ+4X+1+ATZ+QFKeOZD5riHng== + dependencies: + component-emitter "1.2.1" + debug "~3.1.0" + isarray "2.0.1" + +socket.io-parser@~3.4.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.4.1.tgz#b06af838302975837eab2dc980037da24054d64a" + integrity sha512-11hMgzL+WCLWf1uFtHSNvliI++tcRUWdoeYuwIl+Axvwy9z2gQM+7nJyN3STj1tLj5JyIUH8/gpDGxzAlDdi0A== + dependencies: + component-emitter "1.2.1" + debug "~4.1.0" + isarray "2.0.1" + +socket.io-redis@^5.2.0: + version "5.4.0" + resolved "https://registry.yarnpkg.com/socket.io-redis/-/socket.io-redis-5.4.0.tgz#d54bb8b757d04e9c0999d9a4ad07fc6c31bc848f" + integrity sha512-yCQm/Sywd3d08WXUfZRxt6O+JV2vWoPgWK6GVjiM0GkBtq5cpLOk8oILRPKbzTv1VEtSYmK41q0xzcgDinMbmQ== + dependencies: + debug "~4.1.0" + notepack.io "~2.2.0" + redis "^3.0.0" + socket.io-adapter "~1.1.0" + uid2 "0.0.3" + +socket.io@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-2.3.0.tgz#cd762ed6a4faeca59bc1f3e243c0969311eb73fb" + integrity sha512-2A892lrj0GcgR/9Qk81EaY2gYhCBxurV0PfmmESO6p27QPrUK1J3zdns+5QPqvUYK2q657nSj0guoIil9+7eFg== + dependencies: + debug "~4.1.0" + engine.io "~3.4.0" + has-binary2 "~1.0.2" + socket.io-adapter "~1.1.0" + socket.io-client "2.3.0" + socket.io-parser "~3.4.0" + +sparse-bitfield@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz#ff4ae6e68656056ba4b3e792ab3334d38273ca11" + integrity sha1-/0rm5oZWBWuks+eSqzM004JzyhE= + dependencies: + memory-pager "^1.0.2" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + +stable@^0.1.6: + version "0.1.8" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +stack-trace@0.0.x: + version "0.0.10" + resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" + integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= + +"statuses@>= 1.5.0 < 2", statuses@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + +streamsearch@0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-0.1.2.tgz#808b9d0e56fc273d809ba57338e929919a1a9f1a" + integrity sha1-gIudDlb8Jz2Am6VzOOkpkZoanxo= + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2": + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + +strong-globalize@^6.0.0, strong-globalize@^6.0.4: + version "6.0.4" + resolved "https://registry.yarnpkg.com/strong-globalize/-/strong-globalize-6.0.4.tgz#7e343a796d92ec7e8c0c43fb63ab90892ec2358e" + integrity sha512-3LA10Tv/zcgqw3QfppU18iQ6HHSXRj1Z/ZGLF53NXuedk7pXyGcCAnkEYLHdwTx1YrTtWbvyTAVa6rU1LUwaxg== + dependencies: + accept-language "^3.0.18" + debug "^4.1.1" + globalize "^1.5.0" + lodash "^4.17.19" + md5 "^2.2.1" + mkdirp "^1.0.4" + os-locale "^5.0.0" + yamljs "^0.3.0" + +tar@^4.4.2: + version "4.4.13" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" + integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== + dependencies: + chownr "^1.1.1" + fs-minipass "^1.2.5" + minipass "^2.8.6" + minizlib "^1.2.1" + mkdirp "^0.5.0" + safe-buffer "^5.1.2" + yallist "^3.0.3" + +text-hex@1.0.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/text-hex/-/text-hex-1.0.0.tgz#69dc9c1b17446ee79a92bf5b884bb4b9127506f5" + integrity sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg== + +to-array@0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" + integrity sha1-F+bBH3PdTz10zaek/zI46a2b+JA= + +toidentifier@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== + +triple-beam@^1.2.0, triple-beam@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" + integrity sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw== + +tsscmp@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb" + integrity sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA== + +type-is@^1.6.4, type-is@~1.6.17, type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + +typegoose@^5.9.1: + version "5.9.1" + resolved "https://registry.yarnpkg.com/typegoose/-/typegoose-5.9.1.tgz#58dbb14f35ecf96b22e7c744fa7a0f9731260f29" + integrity sha512-D+vMhNyZeKBZHrmJFZwOodl3T9W2NOXY+hbnW/f1n60oEL8+L15eryFc9C6fAKrlnkgpui+kdQnNXsLwx2MgCw== + dependencies: + reflect-metadata "^0.1.13" + +uid-safe@2.1.5, uid-safe@~2.1.5: + version "2.1.5" + resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.5.tgz#2b3d5c7240e8fc2e58f8aa269e5ee49c0857bd3a" + integrity sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA== + dependencies: + random-bytes "~1.0.0" + +uid2@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" + integrity sha1-SDEm4Rd03y9xuLY53NeZw3YWK4I= + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= + +util-deprecate@^1.0.1, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= + +uuid4@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/uuid4/-/uuid4-1.1.4.tgz#80fa0618749110bdb8aa47cc2cc2167c6331f4eb" + integrity sha512-Gr1q2k40LpF8CokcnQFjPDsdslzJbTCTBG5xQIEflUov431gFkY5KduiGIeKYAamkQnNn4IfdHJbLnl9Bib8TQ== + +uuid@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.0.tgz#ab738085ca22dc9a8c92725e459b1d507df5d6ea" + integrity sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ== + +validator@^13.1.1: + version "13.1.1" + resolved "https://registry.yarnpkg.com/validator/-/validator-13.1.1.tgz#f8811368473d2173a9d8611572b58c5783f223bf" + integrity sha512-8GfPiwzzRoWTg7OV1zva1KvrSemuMkv07MA9TTl91hfhe+wKrsrgVN4H2QSFd/U/FhiU3iWPYVgvbsOGwhyFWw== + +vary@^1, vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== + dependencies: + string-width "^1.0.2 || 2" + +winston-transport@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.4.0.tgz#17af518daa690d5b2ecccaa7acf7b20ca7925e59" + integrity sha512-Lc7/p3GtqtqPBYYtS6KCN3c77/2QCev51DvcJKbkFPQNoj1sinkGwLGFDxkXY9J6p9+EPnYs+D90uwbnaiURTw== + dependencies: + readable-stream "^2.3.7" + triple-beam "^1.2.0" + +winston@^3.2.1: + version "3.3.3" + resolved "https://registry.yarnpkg.com/winston/-/winston-3.3.3.tgz#ae6172042cafb29786afa3d09c8ff833ab7c9170" + integrity sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw== + dependencies: + "@dabh/diagnostics" "^2.0.2" + async "^3.1.0" + is-stream "^2.0.0" + logform "^2.2.0" + one-time "^1.0.0" + readable-stream "^3.4.0" + stack-trace "0.0.x" + triple-beam "^1.3.0" + winston-transport "^4.4.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +ws@^7.1.2: + version "7.3.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.1.tgz#d0547bf67f7ce4f12a72dfe31262c68d7dc551c8" + integrity sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA== + +ws@~6.1.0: + version "6.1.4" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.1.4.tgz#5b5c8800afab925e94ccb29d153c8d02c1776ef9" + integrity sha512-eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA== + dependencies: + async-limiter "~1.0.0" + +x-xss-protection@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/x-xss-protection/-/x-xss-protection-1.3.0.tgz#3e3a8dd638da80421b0e9fff11a2dbe168f6d52c" + integrity sha512-kpyBI9TlVipZO4diReZMAHWtS0MMa/7Kgx8hwG/EuZLiA6sg4Ah/4TRdASHhRRN3boobzcYgFRUFSgHRge6Qhg== + +xmlhttprequest-ssl@~1.5.4: + version "1.5.5" + resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" + integrity sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4= + +xtend@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +yallist@^3.0.0, yallist@^3.0.3: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yamljs@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/yamljs/-/yamljs-0.3.0.tgz#dc060bf267447b39f7304e9b2bfbe8b5a7ddb03b" + integrity sha512-C/FsVVhht4iPQYXOInoxUM/1ELSf9EsgKH34FofQOp6hwCPrW4vG4w5++TED3xRUo8gD7l0P1J1dLlDYzODsTQ== + dependencies: + argparse "^1.0.7" + glob "^7.0.5" + +yeast@0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" + integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk=